[gtkmm-documentation] Arrow example: Arrow icons have been renamed



commit 42e71a9c81f8152949eacd4d0bc2c3338365b246
Author: Kjell Ahlstedt <kjell ahlstedt bredband net>
Date:   Sun Sep 7 17:10:11 2014 +0200

    Arrow example: Arrow icons have been renamed
    
    * examples/others/arrow/arrow.cc: The named icons pan-[left|right]-symbolic
    have been renamed to pan-[start|end]-symbolic.

 examples/others/arrow/arrow.cc |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/examples/others/arrow/arrow.cc b/examples/others/arrow/arrow.cc
index b409f7d..1d2ec9c 100644
--- a/examples/others/arrow/arrow.cc
+++ b/examples/others/arrow/arrow.cc
@@ -5,7 +5,7 @@
 #include <gtkmm/window.h>
 #include <gtkmm/application.h>
 
-// 2014-05-21: The pan-[up,down,left,right]-symbolic icons are new.
+// 2014-09-06: The pan-[up,down,start,end]-symbolic icons are new.
 // See https://bugzilla.gnome.org/show_bug.cgi?id=729565
 // If they are not available in your selected icon theme, perhaps you can
 // use the go-[up,down,previous,next]-symbolic icons.
@@ -29,8 +29,8 @@ ArrowButton::ArrowButton(Gtk::ArrowType arrow_type)
 #if USE_PAN_ICON_NAMES
     case Gtk::ARROW_UP:    icon_name = "pan-up-symbolic"; break;
     case Gtk::ARROW_DOWN:  icon_name = "pan-down-symbolic"; break;
-    case Gtk::ARROW_LEFT:  icon_name = "pan-left-symbolic"; break;
-    case Gtk::ARROW_RIGHT: icon_name = "pan-right-symbolic"; break;
+    case Gtk::ARROW_LEFT:  icon_name = "pan-start-symbolic"; break;
+    case Gtk::ARROW_RIGHT: icon_name = "pan-end-symbolic"; break;
 #else
     case Gtk::ARROW_UP:    icon_name = "go-up-symbolic"; break;
     case Gtk::ARROW_DOWN:  icon_name = "go-down-symbolic"; break;


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