tomboy r1740 - in trunk: . Tomboy



Author: sharm
Date: Mon Jan  7 07:52:55 2008
New Revision: 1740
URL: http://svn.gnome.org/viewvc/tomboy?rev=1740&view=rev

Log:
* Tomboy/PreferencesDialog.cs: Fix compilation error when gtk+ < 2.10.

Modified:
   trunk/ChangeLog
   trunk/Tomboy/PreferencesDialog.cs

Modified: trunk/ChangeLog
==============================================================================
--- trunk/ChangeLog	(original)
+++ trunk/ChangeLog	Mon Jan  7 07:52:55 2008
@@ -1,3 +1,7 @@
+2008-01-06  Sandy Armstrong <sanfordarmstrong gmail com> 
+
+	* Tomboy/PreferencesDialog.cs: Fix compilation error when gtk+ < 2.10.
+
 2008-01-05  Boyd Timothy <btimothy gmail com> 
 
 	* data/images/Makefile.am: Added the two new

Modified: trunk/Tomboy/PreferencesDialog.cs
==============================================================================
--- trunk/Tomboy/PreferencesDialog.cs	(original)
+++ trunk/Tomboy/PreferencesDialog.cs	Mon Jan  7 07:52:55 2008
@@ -221,11 +221,12 @@
 			
 			#if GTK_2_10
 			Gtk.LinkButton open_template_button = new Gtk.LinkButton (
+				String.Empty,
+				Catalog.GetString ("Open New Note Template"));
 			#else
 			Gtk.Button open_template_button = new Gtk.Button (
+				Catalog.GetString ("_Open New Note Template..."));
 			#endif
-				String.Empty,
-				Catalog.GetString ("Open New Note Template"));
 
 			open_template_button.Clicked += OpenTemplateButtonClicked;
 			open_template_button.Show ();



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