Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-dev: [Wireshark-dev] Update title of flow graph save dialog

From: Stephen Fisher <stephentfisher@xxxxxxxxx>
Date: Fri, 6 Oct 2006 23:16:38 -0700
A user asked what file format the flow graph is saved as, which isn't 
apparent by looking at the dialog.  I had to try saving a file and check 
its type -- plain text file.  Could someone please apply the attached 
patch or similar change to graph_analysis.c.  My patch updates the title 
of the dialog box from "Wireshark: Save graph to file" to "Wireshark: 
Save graph to text file".


Steve

Index: gtk/graph_analysis.c
===================================================================
--- gtk/graph_analysis.c	(revision 19441)
+++ gtk/graph_analysis.c	(working copy)
@@ -564,7 +564,7 @@
 		return;
 	}
 
-	save_to_file_w = gtk_file_selection_new("Wireshark: Save graph to file");
+	save_to_file_w = gtk_file_selection_new("Wireshark: Save graph to text file");
 
 	/* Container for each row of widgets */
 	vertb = gtk_vbox_new(FALSE, 0);