File tomboy-applet-fix.patch of Package tomboy
Index: Tomboy/Applet.cs
===================================================================
--- Tomboy/Applet.cs (revision 2274)
+++ Tomboy/Applet.cs (working copy)
@@ -17,7 +17,7 @@
public class TomboyApplet : PanelApplet
{
NoteManager manager;
- TomboyAppletEventBox applet_event_box;
+ TomboyPanelAppletEventBox applet_event_box;
TomboyGConfXKeybinder keybinder;
// Keep referenced so our callbacks don't get reaped.
@@ -47,7 +47,7 @@
Logger.Log ("Applet Created...");
manager = Tomboy.DefaultNoteManager;
- applet_event_box = new TomboyAppletEventBox (manager);
+ applet_event_box = new TomboyPanelAppletEventBox (manager);
keybinder = new TomboyGConfXKeybinder (manager, applet_event_box.Tray);
Flags |= PanelAppletFlags.ExpandMinor;
@@ -139,7 +139,7 @@
public enum PanelOrientation { Horizontal, Vertical };
- public class TomboyAppletEventBox : Gtk.EventBox
+ public class TomboyPanelAppletEventBox : Gtk.EventBox
{
NoteManager manager;
TomboyTray tray;
@@ -147,7 +147,7 @@
Gtk.Image image;
int panel_size;
- public TomboyAppletEventBox (NoteManager manager)
+ public TomboyPanelAppletEventBox (NoteManager manager)
: base ()
{
this.manager = manager;
Index: Tomboy/Tray.cs
===================================================================
--- Tomboy/Tray.cs (revision 2274)
+++ Tomboy/Tray.cs (working copy)
@@ -267,7 +267,7 @@
{
NoteManager manager;
TomboyTrayIcon tray_icon = null;
- TomboyAppletEventBox applet_event_box = null;
+ TomboyPanelAppletEventBox applet_event_box = null;
bool menu_added = false;
List<Gtk.MenuItem> recent_notes = new List<Gtk.MenuItem> ();
Gtk.Menu tray_menu;
@@ -286,7 +286,7 @@
this.tray_icon = tray_icon;
}
- public TomboyTray (NoteManager manager, TomboyAppletEventBox applet_event_box)
+ public TomboyTray (NoteManager manager, TomboyPanelAppletEventBox applet_event_box)
: this (manager)
{
this.applet_event_box = applet_event_box;