aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/expert_comp_dlg.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2017-12-21 15:06:20 -0800
committerMichael Mann <mmann78@netscape.net>2018-01-05 03:27:15 +0000
commit0f3aa8522e966205039a88f1ce7faae4adaefa23 (patch)
tree0e193801eb8e7ec18b7df672705980090aacbb6c /ui/gtk/expert_comp_dlg.c
parentdbe9be2f0628914491e3e4265511b6c3026ed6ac (diff)
Qt: Move sized toolbar images to stock_icons.
The sized (WWxHH) icons in the toolbar directory aren't limited to toolbars. Create a "stock_icons" directory and move them and their related SVGs there. Change-Id: I2c1852499594aa738371c79542f24bd3351653bb Reviewed-on: https://code.wireshark.org/review/25133 Reviewed-by: Gerald Combs <gerald@wireshark.org> Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'ui/gtk/expert_comp_dlg.c')
-rw-r--r--ui/gtk/expert_comp_dlg.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/gtk/expert_comp_dlg.c b/ui/gtk/expert_comp_dlg.c
index 8f6e1270a9..39ba71c59d 100644
--- a/ui/gtk/expert_comp_dlg.c
+++ b/ui/gtk/expert_comp_dlg.c
@@ -838,7 +838,7 @@ expert_comp_init(const char *opt_arg _U_, void* userdata _U_)
hbox = ws_gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 3, FALSE);
if ( prefs.gui_expert_composite_eyecandy ) {
#ifdef HAVE_GDK_GRESOURCE
- image = pixbuf_to_widget("/org/wireshark/image/toolbar/14x14/x-expert-error.png");
+ image = pixbuf_to_widget("/org/wireshark/image/stock_icons/14x14/x-expert-error.png");
#else
image = pixbuf_to_widget(expert_error_pb_data);
#endif
@@ -856,7 +856,7 @@ expert_comp_init(const char *opt_arg _U_, void* userdata _U_)
hbox = ws_gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 3, FALSE);
if ( prefs.gui_expert_composite_eyecandy ) {
#ifdef HAVE_GDK_GRESOURCE
- image = pixbuf_to_widget("/org/wireshark/image/toolbar/14x14/x-expert-warn.png");
+ image = pixbuf_to_widget("/org/wireshark/image/stock_icons/14x14/x-expert-warn.png");
#else
image = pixbuf_to_widget(expert_warn_pb_data);
#endif
@@ -875,7 +875,7 @@ expert_comp_init(const char *opt_arg _U_, void* userdata _U_)
hbox = ws_gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 3, FALSE);
if ( prefs.gui_expert_composite_eyecandy ) {
#ifdef HAVE_GDK_GRESOURCE
- image = pixbuf_to_widget("/org/wireshark/image/toolbar/14x14/x-expert-note.png");
+ image = pixbuf_to_widget("/org/wireshark/image/stock_icons/14x14/x-expert-note.png");
#else
image = pixbuf_to_widget(expert_note_pb_data);
#endif
@@ -893,7 +893,7 @@ expert_comp_init(const char *opt_arg _U_, void* userdata _U_)
hbox = ws_gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 3, FALSE);
if ( prefs.gui_expert_composite_eyecandy ) {
#ifdef HAVE_GDK_GRESOURCE
- image = pixbuf_to_widget("/org/wireshark/image/toolbar/14x14/x-expert-chat.png");
+ image = pixbuf_to_widget("/org/wireshark/image/stock_icons/14x14/x-expert-chat.png");
#else
image = pixbuf_to_widget(expert_chat_pb_data);
#endif