aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/file_import_dlg.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2013-03-31 04:17:47 +0000
committerGuy Harris <guy@alum.mit.edu>2013-03-31 04:17:47 +0000
commite2eabbc883cdb2f18b45d487865227c7be634c18 (patch)
tree130b099d16e89f8c0afd87cf14494c8c386264ee /ui/gtk/file_import_dlg.c
parentd2efac96b30a14a5e108876f71f64ecf6c645c5c (diff)
Make the menu item for importing a hex dump text file be "Import from
Hex Dump", to clarify that it's not some sort of "generic" import function, just one that can read a hex dump file. ("Import from Hex Dump Text" is another possibility.) Use that string in the dialog title as well. svn path=/trunk/; revision=48665
Diffstat (limited to 'ui/gtk/file_import_dlg.c')
-rw-r--r--ui/gtk/file_import_dlg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/gtk/file_import_dlg.c b/ui/gtk/file_import_dlg.c
index 2470c8f10c..fd80e67acd 100644
--- a/ui/gtk/file_import_dlg.c
+++ b/ui/gtk/file_import_dlg.c
@@ -105,7 +105,7 @@ file_import_dlg_destroy_cb(GtkWidget *win _U_, gpointer user_data _U_)
static void
browse_file_cb(GtkWidget *browse_bt, GtkWidget *filename_te)
{
- file_selection_browse(browse_bt, filename_te, "Wireshark: Import from Text",
+ file_selection_browse(browse_bt, filename_te, "Wireshark: Import from Hex Dump",
FILE_SELECTION_READ_BROWSE);
}
@@ -854,7 +854,7 @@ file_import_dlg_new(void)
/* Setup the dialog */
- main_w = dlg_window_new("Wireshark: Import from Text");
+ main_w = dlg_window_new("Wireshark: Import from Hex Dump");
gtk_window_set_default_size(GTK_WINDOW(main_w), 400, 300);
main_vb = ws_gtk_box_new(GTK_ORIENTATION_VERTICAL, 0, FALSE);