summaryrefslogtreecommitdiff
path: root/gtk/gui_utils.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2007-02-01 08:36:35 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2007-02-01 08:36:35 +0000
commit7d8687e8ae573ffd7a0021c6178e35a0da7651dd (patch)
tree660b11fb9ba8a99f5945216077d13e006accafae /gtk/gui_utils.c
parentd253c37814d4dc73e860f2d3c91ca6d875325108 (diff)
downloadwireshark-7d8687e8ae573ffd7a0021c6178e35a0da7651dd.tar.gz
dont ifdef out main_window_exit() if we dont have PCAP since this symbol is required even without pcap
svn path=/trunk/; revision=20661
Diffstat (limited to 'gtk/gui_utils.c')
-rw-r--r--gtk/gui_utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gui_utils.c b/gtk/gui_utils.c
index 00221dd57d..727c297845 100644
--- a/gtk/gui_utils.c
+++ b/gtk/gui_utils.c
@@ -595,14 +595,14 @@ void main_window_update(void)
while (gtk_events_pending()) gtk_main_iteration();
}
-#ifdef HAVE_LIBPCAP
-
/* exit the main window */
void main_window_exit(void)
{
gtk_exit(0);
}
+#ifdef HAVE_LIBPCAP
+
/* quit a nested main window */
void main_window_nested_quit(void)
{