aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2006-05-30 14:28:20 +0000
committerGerald Combs <gerald@wireshark.org>2006-05-30 14:28:20 +0000
commitee4b9b7549313b771f80ee8bdd626206f6c352cc (patch)
treead02851ffd371bcf53252460c14ebe87b75a2e06 /gtk
parentdedb24695ec82a8eacb9f9588ed4a0828b716c11 (diff)
ethereal.nsi -> wireshark.nsi
svn path=/trunk/; revision=18254
Diffstat (limited to 'gtk')
-rw-r--r--gtk/win32-file-dlg.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/win32-file-dlg.c b/gtk/win32-file-dlg.c
index 519b677f1b..b9e6acf001 100644
--- a/gtk/win32-file-dlg.c
+++ b/gtk/win32-file-dlg.c
@@ -159,7 +159,7 @@ win32_open_file (HWND h_wnd) {
#endif
ofn.hwndOwner = h_wnd;
ofn.hInstance = (HINSTANCE) GetWindowLong(h_wnd, GWL_HINSTANCE);
- /* XXX - Grab the rest of the extension list from ethereal.nsi. */
+ /* XXX - Grab the rest of the extension list from wireshark.nsi. */
ofn.lpstrFilter = FILE_TYPES_OPEN;
ofn.lpstrCustomFilter = NULL;
ofn.nMaxCustFilter = 0;
@@ -213,7 +213,7 @@ win32_save_as_file(HWND h_wnd, action_after_save_e action_after_save, gpointer a
ofn.lStructSize = sizeof(ofn);
ofn.hwndOwner = h_wnd;
ofn.hInstance = (HINSTANCE) GetWindowLong(h_wnd, GWL_HINSTANCE);
- /* XXX - Grab the rest of the extension list from ethereal.nsi. */
+ /* XXX - Grab the rest of the extension list from wireshark.nsi. */
ofn.lpstrFilter = FILE_TYPES_SAVE;
ofn.lpstrCustomFilter = NULL;
ofn.nMaxCustFilter = 0;
@@ -304,7 +304,7 @@ win32_merge_file (HWND h_wnd) {
ofn.lStructSize = sizeof(ofn);
ofn.hwndOwner = h_wnd;
ofn.hInstance = (HINSTANCE) GetWindowLong(h_wnd, GWL_HINSTANCE);
- /* XXX - Grab the rest of the extension list from ethereal.nsi. */
+ /* XXX - Grab the rest of the extension list from wireshark.nsi. */
ofn.lpstrFilter = FILE_TYPES_MERGE;
ofn.lpstrCustomFilter = NULL;
ofn.nMaxCustFilter = 0;
@@ -505,7 +505,7 @@ win32_export_raw_file(HWND h_wnd) {
ofn.lStructSize = sizeof(ofn);
ofn.hwndOwner = h_wnd;
ofn.hInstance = (HINSTANCE) GetWindowLong(h_wnd, GWL_HINSTANCE);
- /* XXX - Grab the rest of the extension list from ethereal.nsi. */
+ /* XXX - Grab the rest of the extension list from wireshark.nsi. */
ofn.lpstrFilter = FILE_TYPES_RAW;
ofn.lpstrCustomFilter = NULL;
ofn.nMaxCustFilter = 0;
@@ -567,7 +567,7 @@ win32_export_color_file(HWND h_wnd) {
ofn.lStructSize = sizeof(ofn);
ofn.hwndOwner = h_wnd;
ofn.hInstance = (HINSTANCE) GetWindowLong(h_wnd, GWL_HINSTANCE);
- /* XXX - Grab the rest of the extension list from ethereal.nsi. */
+ /* XXX - Grab the rest of the extension list from wireshark.nsi. */
ofn.lpstrFilter = FILE_TYPES_COLOR;
ofn.lpstrCustomFilter = NULL;
ofn.nMaxCustFilter = 0;
@@ -608,7 +608,7 @@ win32_import_color_file(HWND h_wnd) {
ofn.lStructSize = sizeof(ofn);
ofn.hwndOwner = h_wnd;
ofn.hInstance = (HINSTANCE) GetWindowLong(h_wnd, GWL_HINSTANCE);
- /* XXX - Grab the rest of the extension list from ethereal.nsi. */
+ /* XXX - Grab the rest of the extension list from wireshark.nsi. */
ofn.lpstrFilter = FILE_TYPES_COLOR;
ofn.lpstrCustomFilter = NULL;
ofn.nMaxCustFilter = 0;