From 1dcff5eb0ba8c6afc9195d4dd4c3db1721694b53 Mon Sep 17 00:00:00 2001 From: sahlberg Date: Thu, 1 Feb 2007 08:36:35 +0000 Subject: [PATCH] dont ifdef out main_window_exit() if we dont have PCAP since this symbol is required even without pcap git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20661 f5534014-38df-0310-8fa8-9805f1628bb7 --- gtk/gui_utils.c | 4 ++-- 1 file 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) { -- 2.34.1