aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@ximian.com>2001-07-10 07:07:57 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2001-07-10 07:07:57 +0800
commit7367ac4cb65aa4a04025e68ebf25a619231a2ce5 (patch)
treeb9c55f83ea8680f7469e94d27c86b64ccf06807c
parent76f4fb9c001b1682b39cb7f2c8e97c030f143ec1 (diff)
downloadgsoc2013-evolution-7367ac4cb65aa4a04025e68ebf25a619231a2ce5.tar
gsoc2013-evolution-7367ac4cb65aa4a04025e68ebf25a619231a2ce5.tar.gz
gsoc2013-evolution-7367ac4cb65aa4a04025e68ebf25a619231a2ce5.tar.bz2
gsoc2013-evolution-7367ac4cb65aa4a04025e68ebf25a619231a2ce5.tar.lz
gsoc2013-evolution-7367ac4cb65aa4a04025e68ebf25a619231a2ce5.tar.xz
gsoc2013-evolution-7367ac4cb65aa4a04025e68ebf25a619231a2ce5.tar.zst
gsoc2013-evolution-7367ac4cb65aa4a04025e68ebf25a619231a2ce5.zip
Make the "Rename" item be a GNOMEUIINFO_ITEM_NONE() since we don't have a
2001-07-09 Federico Mena Quintero <federico@ximian.com> * e-shortcuts-view.c: Make the "Rename" item be a GNOMEUIINFO_ITEM_NONE() since we don't have a stock icon; likewise for the "Open in New Window". This gets rid of warnings from gnome-libs. Use a better stock icon for the "Remove" command, and add a stock icon to the "Open" command. svn path=/trunk/; revision=10938
-rw-r--r--shell/ChangeLog8
-rw-r--r--shell/e-shortcuts-view.c14
2 files changed, 15 insertions, 7 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index e850d23f6b..a1d902a252 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,11 @@
+2001-07-09 Federico Mena Quintero <federico@ximian.com>
+
+ * e-shortcuts-view.c: Make the "Rename" item be a
+ GNOMEUIINFO_ITEM_NONE() since we don't have a stock icon; likewise
+ for the "Open in New Window". This gets rid of warnings from
+ gnome-libs. Use a better stock icon for the "Remove" command, and
+ add a stock icon to the "Open" command.
+
2001-07-09 Jason Leach <jleach@ximian.com>
* e-shell-view.c (updated_folder_cb): It's very possible that
diff --git a/shell/e-shortcuts-view.c b/shell/e-shortcuts-view.c
index 2fba10c130..6f6dae5241 100644
--- a/shell/e-shortcuts-view.c
+++ b/shell/e-shortcuts-view.c
@@ -465,15 +465,15 @@ rename_shortcut_cb (GtkWidget *widget,
}
static GnomeUIInfo shortcut_right_click_menu_uiinfo[] = {
- GNOMEUIINFO_ITEM (N_("Open"), N_("Open the folder linked to this shortcut"),
- open_shortcut_cb, NULL),
- GNOMEUIINFO_ITEM (N_("Open in New Window"), N_("Open the folder linked to this shortcut in a new window"),
- open_shortcut_in_new_window_cb, NULL),
+ GNOMEUIINFO_ITEM_STOCK (N_("Open"), N_("Open the folder linked to this shortcut"),
+ open_shortcut_cb, GNOME_STOCK_MENU_OPEN),
+ GNOMEUIINFO_ITEM_NONE (N_("Open in New Window"), N_("Open the folder linked to this shortcut in a new window"),
+ open_shortcut_in_new_window_cb),
GNOMEUIINFO_SEPARATOR,
- GNOMEUIINFO_ITEM_STOCK (N_("Rename"), N_("Rename this shortcut"),
- rename_shortcut_cb, NULL),
+ GNOMEUIINFO_ITEM_NONE (N_("Rename"), N_("Rename this shortcut"),
+ rename_shortcut_cb),
GNOMEUIINFO_ITEM_STOCK (N_("Remove"), N_("Remove this shortcut from the shortcut bar"),
- remove_shortcut_cb, GNOME_STOCK_MENU_CLOSE),
+ remove_shortcut_cb, GNOME_STOCK_MENU_TRASH),
GNOMEUIINFO_END
};