diff options
author | Guy Harris <guy@alum.mit.edu> | 2012-06-04 20:08:59 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2012-06-04 20:08:59 +0000 |
commit | 00de07144d4aafddc7f23b8af7157a015c707dfb (patch) | |
tree | 42777a216744b2be04c9f414691f2a19c96b589e /ui/gtk/capture_file_dlg.c | |
parent | 91b777712ac83700b4de63be118ed3ee36104bad (diff) | |
download | wireshark-00de07144d4aafddc7f23b8af7157a015c707dfb.tar.gz wireshark-00de07144d4aafddc7f23b8af7157a015c707dfb.tar.bz2 wireshark-00de07144d4aafddc7f23b8af7157a015c707dfb.zip |
Use the modal version of the bad display filter alert box in the I/O
statistics window.
Get rid of the non-modal version (it's not being used any more), and
remove the now-redundant _modal from the modal version.
svn path=/trunk/; revision=43081
Diffstat (limited to 'ui/gtk/capture_file_dlg.c')
-rw-r--r-- | ui/gtk/capture_file_dlg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/gtk/capture_file_dlg.c b/ui/gtk/capture_file_dlg.c index 719294a0cf..0ab1ae7dea 100644 --- a/ui/gtk/capture_file_dlg.c +++ b/ui/gtk/capture_file_dlg.c @@ -562,7 +562,7 @@ file_open_cmd(GtkWidget *w) if (!dfilter_compile(rfilter, &rfcode)) { /* Not valid. Tell the user, and go back and run the file selection box again once they dismiss the alert. */ - bad_dfilter_alert_box_modal(file_open_w, rfilter); + bad_dfilter_alert_box(file_open_w, rfilter); g_free(cf_name); continue; } @@ -815,7 +815,7 @@ file_merge_cmd(GtkWidget *w) if (!dfilter_compile(rfilter, &rfcode)) { /* Not valid. Tell the user, and go back and run the file selection box again once they dismiss the alert. */ - bad_dfilter_alert_box_modal(file_merge_w, rfilter); + bad_dfilter_alert_box(file_merge_w, rfilter); g_free(cf_name); continue; } |