aboutsummaryrefslogtreecommitdiffstats
path: root/epan/prefs-int.h
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2006-09-29 22:48:38 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2006-09-29 22:48:38 +0000
commitc6d919cfb6b79bb2ef518da34fd7a7e3f99ac28c (patch)
treef408595b5121913db05c021f29a8d9e39fa3eb23 /epan/prefs-int.h
parent3b1441f3c2e88147df2df64c31d4ae8684acd3a0 (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). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19370 f5534014-38df-0310-8fa8-9805f1628bb7
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 */