aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/about_dlg.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2008-06-24 22:53:52 +0000
committerGerald Combs <gerald@wireshark.org>2008-06-24 22:53:52 +0000
commit495ddc2830cb3f490e53519ca3074d1aa52c2600 (patch)
tree77e5d5982b4c750466c87c9920628a3620fc15b1 /gtk/about_dlg.c
parent48c21706f2cc3c94f9c4e7e4178c1b65d46662c6 (diff)
Make it obvious that this is a development version. Fix a makefile
dependency on the splash images. svn path=/trunk/; revision=25594
Diffstat (limited to 'gtk/about_dlg.c')
-rw-r--r--gtk/about_dlg.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk/about_dlg.c b/gtk/about_dlg.c
index db31b008ed..b8dd0916e0 100644
--- a/gtk/about_dlg.c
+++ b/gtk/about_dlg.c
@@ -49,7 +49,7 @@
#include "gtk/main.h"
#include "gtk/plugins_dlg.h"
-#include "../image/wssplash.xpm"
+#include "../image/wssplash-dev.xpm"
#include "webbrowser.h"
static void about_wireshark_destroy_cb(GtkWidget *, gpointer);
@@ -358,9 +358,9 @@ about_folders_page_new(void)
const gchar *titles[] = { "Name", "Folder", "Typical Files"};
GtkWidget *scrolledwindow;
#ifdef HAVE_LIBSMI
- gint i;
+ gint i;
gchar **resultArray;
-#endif
+#endif
scrolledwindow = scrolled_window_new(NULL, NULL);
gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolledwindow),
@@ -370,7 +370,7 @@ about_folders_page_new(void)
table = simple_list_new(3, titles);
/* connect a callback so we can spot a double-click */
- gtk_signal_connect(GTK_OBJECT(table), "button_press_event",
+ gtk_signal_connect(GTK_OBJECT(table), "button_press_event",
GTK_SIGNAL_FUNC(about_folders_callback), (gpointer)0);
simple_list_url_col(table, 1);
@@ -430,7 +430,7 @@ about_folders_page_new(void)
resultArray = g_strsplit(path, ":", 10);
#endif
- for(i = 0; resultArray[i]; i++)
+ for(i = 0; resultArray[i]; i++)
about_folders_row(table, "MIB/PIB path", g_strstrip(resultArray[i]),
"SMI MIB/PIB search path");
g_strfreev(resultArray);