tomboy r1742 - in trunk: . Tomboy
- From: sharm svn gnome org
- To: svn-commits-list gnome org
- Subject: tomboy r1742 - in trunk: . Tomboy
- Date: Mon, 7 Jan 2008 14:09:15 +0000 (GMT)
Author: sharm
Date: Mon Jan 7 14:09:15 2008
New Revision: 1742
URL: http://svn.gnome.org/viewvc/tomboy?rev=1742&view=rev
Log:
* Tomboy/Utils.cs: Commenting out use of Gtk.Button.ImagePosition,
which is new to GTK+ 2.10. We were just setting it to the default
value, anyway.
Modified:
trunk/ChangeLog
trunk/Tomboy/Utils.cs
Modified: trunk/ChangeLog
==============================================================================
--- trunk/ChangeLog (original)
+++ trunk/ChangeLog Mon Jan 7 14:09:15 2008
@@ -1,5 +1,10 @@
2008-01-07 Sandy Armstrong <sanfordarmstrong gmail com>
+ * Tomboy/Utils.cs: Commenting out use of Gtk.Button.ImagePosition, which is
+ new to GTK+ 2.10. We were just setting it to the default value, anyway.
+
+2008-01-07 Sandy Armstrong <sanfordarmstrong gmail com>
+
* Tomboy/NoteManager.cs: Don't need "Tagging In Tomboy" note anymore, though
maybe "Notebooks In Tomboy" would be useful.
Modified: trunk/Tomboy/Utils.cs
==============================================================================
--- trunk/Tomboy/Utils.cs (original)
+++ trunk/Tomboy/Utils.cs Mon Jan 7 14:09:15 2008
@@ -364,7 +364,10 @@
{
Gtk.Button button = new Gtk.Button ();
Gtk.Image image = new Gtk.Image (pixbuf);
- button.ImagePosition = Gtk.PositionType.Left;
+ // NOTE: This property is new to GTK+ 2.10, but we don't
+ // really need the line because we're just setting
+ // it to the default value anyway.
+ //button.ImagePosition = Gtk.PositionType.Left;
button.Image = image;
button.Label = label_text;
button.UseUnderline = true;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]