[frogr] Don't use deprecated icon names, but the ones from the Icon Naming Spec



commit 3bceafaf9ca5e34bc2912de1d47598017e86b111
Author: Mario Sanchez Prada <msanchez gnome org>
Date:   Tue Oct 7 23:07:39 2014 +0100

    Don't use deprecated icon names, but the ones from the Icon Naming Spec
    
    http://standards.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html

 src/frogr-main-view.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/src/frogr-main-view.c b/src/frogr-main-view.c
index 23cf522..00b2c69 100644
--- a/src/frogr-main-view.c
+++ b/src/frogr-main-view.c
@@ -541,13 +541,13 @@ static void _initialize_toolbar (GtkWidget *toolbar)
   GtkToolItem *toolbar_items[7];
   gint i;
 
-  toolbar_items[0] = _create_toolbar_item ("win.open-project", "gtk-open", _("Open"), _("Open Existing 
Project"));
-  toolbar_items[1] = _create_toolbar_item ("win.save-project", "gtk-save", _("Save"), _("Save Current 
Project"));
+  toolbar_items[0] = _create_toolbar_item ("win.open-project", "document-open", _("Open"), _("Open Existing 
Project"));
+  toolbar_items[1] = _create_toolbar_item ("win.save-project", "document-save", _("Save"), _("Save Current 
Project"));
   toolbar_items[2] = gtk_separator_tool_item_new ();
-  toolbar_items[3] = _create_toolbar_item ("win.add-pictures", "gtk-add", _("Add"), _("Add Elements"));
-  toolbar_items[4] = _create_toolbar_item ("win.remove-pictures", "gtk-remove", _("Remove"), _("Remove 
Elements"));
+  toolbar_items[3] = _create_toolbar_item ("win.add-pictures", "list-add", _("Add"), _("Add Elements"));
+  toolbar_items[4] = _create_toolbar_item ("win.remove-pictures", "list-remove", _("Remove"), _("Remove 
Elements"));
   toolbar_items[5] = gtk_separator_tool_item_new ();
-  toolbar_items[6] = _create_toolbar_item ("win.upload-all", "gtk-go-up", _("Upload"), _("Upload All"));
+  toolbar_items[6] = _create_toolbar_item ("win.upload-all", "go-up", _("Upload"), _("Upload All"));
 
   for (i = 0; i < G_N_ELEMENTS (toolbar_items); ++i)
     gtk_toolbar_insert (GTK_TOOLBAR (toolbar), toolbar_items[i], i);


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