summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-misc/tomboy/files')
-rw-r--r--app-misc/tomboy/files/digest-tomboy-0.4.1-r13
-rw-r--r--app-misc/tomboy/files/digest-tomboy-0.6.13
-rw-r--r--app-misc/tomboy/files/tomboy-0.4.1-init-some-stuff.patch62
-rw-r--r--app-misc/tomboy/files/tomboy-0.4.1-verbs.patch33
4 files changed, 0 insertions, 101 deletions
diff --git a/app-misc/tomboy/files/digest-tomboy-0.4.1-r1 b/app-misc/tomboy/files/digest-tomboy-0.4.1-r1
deleted file mode 100644
index 2a09b218b86e..000000000000
--- a/app-misc/tomboy/files/digest-tomboy-0.4.1-r1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 7e9ab15b8c799d265676173f8a8de7ce tomboy-0.4.1.tar.gz 937041
-RMD160 8837330b651ad1fee5952ef4b7c66072b661f417 tomboy-0.4.1.tar.gz 937041
-SHA256 a2d0690b8fe37c5e8179dabb70832fca07bc2b09c3013dbb252dc507e1c3d900 tomboy-0.4.1.tar.gz 937041
diff --git a/app-misc/tomboy/files/digest-tomboy-0.6.1 b/app-misc/tomboy/files/digest-tomboy-0.6.1
deleted file mode 100644
index 70ca33324f22..000000000000
--- a/app-misc/tomboy/files/digest-tomboy-0.6.1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 33e7f6b465055bcc72d6997b5f2a3199 tomboy-0.6.1.tar.bz2 1188501
-RMD160 eb5d4fa1b9b75b8d0e305ca27647610fd96c6d87 tomboy-0.6.1.tar.bz2 1188501
-SHA256 b796f4cdae0966aeb1da3207d956308d41ccbfeec042841bddd25dc8982ce1d7 tomboy-0.6.1.tar.bz2 1188501
diff --git a/app-misc/tomboy/files/tomboy-0.4.1-init-some-stuff.patch b/app-misc/tomboy/files/tomboy-0.4.1-init-some-stuff.patch
deleted file mode 100644
index 17e8b7e16617..000000000000
--- a/app-misc/tomboy/files/tomboy-0.4.1-init-some-stuff.patch
+++ /dev/null
@@ -1,62 +0,0 @@
---- Tomboy/Tray.cs.orig 2006-10-03 14:58:21.000000000 -0500
-+++ Tomboy/Tray.cs 2006-10-03 15:01:31.000000000 -0500
-@@ -50,8 +50,6 @@
- tips.Sink ();
-
- SetupDragAndDrop ();
--
-- InitSomeStuff ();
- }
-
- void ButtonPress (object sender, Gtk.ButtonPressEventArgs args)
-@@ -398,49 +396,9 @@
- int icon_size = Math.Min (rect.Height, rect.Width);
- if (icon_size_last != icon_size) {
- icon_size_last = icon_size;
-- image.Pixbuf = GuiUtils.GetIcon (GetIconName (), icon_size);
-- }
-- }
--
-- void ReloadIcon ()
-- {
-- icon_size_last = -1;
-- QueueResize ();
-+ image.Pixbuf = GuiUtils.GetIcon ("tomboy", icon_size);
- }
--
-- // NOTHING TO SEE HERE
-- void InitSomeStuff ()
-- {
-- manager.NoteDeleted += OnNoteDeletedUpdateIcon;
-- manager.NoteAdded += OnNoteAddedUpdateIcon;
-- manager.NoteRenamed += OnNoteRenamedUpdateIcon;
-- }
--
-- void OnNoteDeletedUpdateIcon (object sender, Note changed)
-- {
-- if (changed.Title == "Tintin")
-- ReloadIcon ();
-- }
--
-- void OnNoteAddedUpdateIcon (object sender, Note changed)
-- {
-- if (changed.Title == "Tintin")
-- ReloadIcon ();
-- }
--
-- void OnNoteRenamedUpdateIcon (Note note, string old_title)
-- {
-- if (note.Title == "Tintin" || old_title == "Tintin")
-- ReloadIcon ();
-- }
--
-- string GetIconName ()
-- {
-- if (manager.Find ("Tintin") != null)
-- return "tintin";
-- return "tomboy";
- }
-- // GO ABOUT YOUR BUSINESS
- }
-
- //
diff --git a/app-misc/tomboy/files/tomboy-0.4.1-verbs.patch b/app-misc/tomboy/files/tomboy-0.4.1-verbs.patch
deleted file mode 100644
index 3fc5ec8d00db..000000000000
--- a/app-misc/tomboy/files/tomboy-0.4.1-verbs.patch
+++ /dev/null
@@ -1,33 +0,0 @@
---- Tomboy/Applet.cs 2006-10-03 15:36:22.000000000 -0500
-+++ Tomboy/Applet.cs 2006-10-03 15:45:51.000000000 -0500
-@@ -17,7 +17,8 @@
- TomboyTray tray;
- TomboyGConfXKeybinder keybinder;
-
-- BonoboUIVerb [] menu_verbs;
-+ // Keep referenced so our callbacks don't get reaped
-+ static BonoboUIVerb[] menu_verbs;
-
- public TomboyApplet (IntPtr raw)
- : base (raw)
-@@ -49,14 +50,13 @@
- ShowAll ();
-
- // Keep referenced so our callbacks don't get reaped.
-- menu_verbs = new BonoboUIVerb [] {
-- new BonoboUIVerb (
-- "Props", new ContextMenuItemCallback (ShowPreferencesVerb)),
-- new BonoboUIVerb (
-- "Plugins", new ContextMenuItemCallback (ShowPluginsVerb)),
-- new BonoboUIVerb (
-- "About", new ContextMenuItemCallback (ShowAboutVerb))
-+ if (menu_verbs == null) {
-+ menu_verbs = new BonoboUIVerb[] {
-+ new BonoboUIVerb("Props", ShowPreferencesVerb),
-+ new BonoboUIVerb("Plugins", ShowPluginsVerb),
-+ new BonoboUIVerb("About", ShowAboutVerb)
- };
-+ }
-
- SetupMenuFromResource (null, "GNOME_TomboyApplet.xml", menu_verbs);
- }