[tomboy] Revert previous commit (add Help menu item for Mac)



commit f00e2136579c1f3f0e342fb23e2f30a0af40f7f5
Author: Sandy Armstrong <sanfordarmstrong gmail com>
Date:   Mon Oct 18 14:56:42 2010 -0700

    Revert previous commit (add Help menu item for Mac)
    
    This for some reason interferes with the addition of the Tools menu in
    SyncManager.Initialize.  Copying that UI XML into MacApplication made
    the Tools menu reappear, but the Help menu item disappear.
    
    Patches still welcome here.
    
    This reverts commit edee8ee4975c4600e9649b39f666d446c2ba7690.

 Tomboy/MacApplication.cs     |    3 +--
 Tomboy/WindowsApplication.cs |    3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)
---
diff --git a/Tomboy/MacApplication.cs b/Tomboy/MacApplication.cs
index e96186b..66841c2 100644
--- a/Tomboy/MacApplication.cs
+++ b/Tomboy/MacApplication.cs
@@ -291,8 +291,7 @@ namespace Tomboy
 
 		public virtual void DisplayHelp (string project, string page, Gdk.Screen screen)
 		{
-			string version = Defines.VERSION.Remove (Defines.VERSION.LastIndexOf ('.'));
-			OpenUrl (string.Format ("http://library.gnome.org/users/{0}/{1}";, project, version), screen);
+			OpenUrl (string.Format("http://library.gnome.org/users/{0}/";, project), screen);
 		}
 
 		#endregion
diff --git a/Tomboy/WindowsApplication.cs b/Tomboy/WindowsApplication.cs
index bfa8324..620a143 100644
--- a/Tomboy/WindowsApplication.cs
+++ b/Tomboy/WindowsApplication.cs
@@ -120,8 +120,7 @@ namespace Tomboy
 
 		public virtual void DisplayHelp (string project, string page, Gdk.Screen screen)
 		{
-			string version = Defines.VERSION.Remove (Defines.VERSION.LastIndexOf ('.'));
-			OpenUrl (string.Format ("http://library.gnome.org/users/{0}/{1}";, project, version), screen);
+			OpenUrl (string.Format("http://library.gnome.org/users/{0}/";, project), screen);
 		}
 
 		#endregion



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]