diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2004-06-01 17:33:37 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2004-06-01 17:33:37 +0000 |
commit | 14bf83c340c68b4711ba013bc4f1ed66b464bcaf (patch) | |
tree | 3814bde632cb726445e9ef78e7299d877616bce3 /gtk/rtp_analysis.c | |
parent | 09184b8a03224b26f18c09fb7eeae0333617a075 (diff) | |
download | wireshark-14bf83c340c68b4711ba013bc4f1ed66b464bcaf.tar.gz wireshark-14bf83c340c68b4711ba013bc4f1ed66b464bcaf.tar.bz2 wireshark-14bf83c340c68b4711ba013bc4f1ed66b464bcaf.zip |
add details for doxygen, various code cleanups as a result of this
svn path=/trunk/; revision=11052
Diffstat (limited to 'gtk/rtp_analysis.c')
-rw-r--r-- | gtk/rtp_analysis.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/rtp_analysis.c b/gtk/rtp_analysis.c index 4fcf73b0bd..959abe66b8 100644 --- a/gtk/rtp_analysis.c +++ b/gtk/rtp_analysis.c @@ -1,7 +1,7 @@ /* rtp_analysis.c * RTP analysis addition for ethereal * - * $Id: rtp_analysis.c,v 1.44 2004/05/27 19:59:50 ulfl Exp $ + * $Id: rtp_analysis.c,v 1.45 2004/06/01 17:33:37 ulfl Exp $ * * Copyright 2003, Alcatel Business Systems * By Lars Ruoff <lars.ruoff@gmx.net> @@ -969,7 +969,7 @@ static void save_csv_as_ok_cb(GtkWidget *bt _U_, gpointer fs /*user_data_t *user /* It's a directory - set the file selection box to display it. */ set_last_open_dir(g_dest); g_free(g_dest); - gtk_file_selection_set_filename(GTK_FILE_SELECTION(fs), last_open_dir); + file_selection_set_current_folder(fs, get_last_open_dir()); return; } @@ -1391,7 +1391,7 @@ static void save_voice_as_ok_cb(GtkWidget *ok_bt _U_, gpointer fs _U_) /* It's a directory - set the file selection box to display it. */ set_last_open_dir(g_dest); g_free(g_dest); - gtk_file_selection_set_filename(GTK_FILE_SELECTION(fs), last_open_dir); + file_selection_set_current_folder(fs, get_last_open_dir()); return; } |