aboutsummaryrefslogtreecommitdiffstats
path: root/epan/prefs-int.h
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2006-09-29 22:48:38 +0000
committerUlf Lamping <ulf.lamping@web.de>2006-09-29 22:48:38 +0000
commite940ff36b4645434b583a6389aff6c84ca1b7cb8 (patch)
treef408595b5121913db05c021f29a8d9e39fa3eb23 /epan/prefs-int.h
parent736bf234e83f84e6cfcf72f1f505b4e4eb9b035b (diff)
from Stephen Fisher:
Attached is a patch for consideration that changes the title in the preferences notebook to be the full description of the preference (but leaves the short name in the preferences list on the left). svn path=/trunk/; revision=19370
Diffstat (limited to 'epan/prefs-int.h')
-rw-r--r--epan/prefs-int.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/prefs-int.h b/epan/prefs-int.h
index 60267daa7a..fb96100286 100644
--- a/epan/prefs-int.h
+++ b/epan/prefs-int.h
@@ -28,7 +28,8 @@
struct pref_module {
const char *name; /* name of module */
- const char *title; /* title of module (displayed in preferences notebook) */
+ const char *title; /* title of module (displayed in preferences list) */
+ const char *description;/* Description of module (displayed in preferences notebook) */
gboolean is_subtree; /* if TRUE, this has other modules, not preferences, under it */
void (*apply_cb)(void); /* routine to call when preferences applied */
GList *prefs; /* list of its preferences or submodules */