summaryrefslogtreecommitdiff
path: root/epan/prefs.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2010-07-26 13:23:30 +0000
committerAnders Broman <anders.broman@ericsson.com>2010-07-26 13:23:30 +0000
commit2bd0983a36db1b6c1add3cbb454a301411f8e725 (patch)
tree103f85701aada9283fbab85f42526df48f9e7ced /epan/prefs.c
parent1315fe5d2989774bd8cc2bf66561add5f7ed6e84 (diff)
downloadwireshark-2bd0983a36db1b6c1add3cbb454a301411f8e725.tar.gz
From Cal Turney:
Optionally display Wireshark version in the main window's title bar. (Modified to include SVN version). https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5040 svn path=/trunk/; revision=33631
Diffstat (limited to 'epan/prefs.c')
-rw-r--r--epan/prefs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/prefs.c b/epan/prefs.c
index 532a843247..256d557030 100644
--- a/epan/prefs.c
+++ b/epan/prefs.c
@@ -2979,7 +2979,8 @@ write_prefs(char **pf_path_return)
fprintf(pf, PRS_GUI_START_TITLE ": %s\n",
prefs.gui_start_title);
- fprintf(pf, "\n# Show version in start page, can be useful in custom builds.\n");
+ fprintf(pf, "\n# Show version in start page and main window's title bar.\n");
+ fprintf(pf, "# This can be useful for keeping track of custom builds.\n");
fprintf(pf, "# TRUE or FALSE (case-insensitive).\n");
fprintf(pf, PRS_GUI_VERSION_IN_START_PAGE ": %s\n",
prefs.gui_version_in_start_page == TRUE ? "TRUE" : "FALSE");