summaryrefslogtreecommitdiff
path: root/libpurple/prefs.h
diff options
context:
space:
mode:
authorElliott Sales de Andrade <qulogic@pidgin.im>2009-03-02 04:18:40 +0000
committerElliott Sales de Andrade <qulogic@pidgin.im>2009-03-02 04:18:40 +0000
commita74c19b9c5739f27cfbd9e28c46bbe54e0e2add7 (patch)
treec44cb7fe4225d15f06cac6047df7304230f74b6a /libpurple/prefs.h
parent810cbbab6ba0b21761c09e44aa12b1464b78201c (diff)
parent02cbca7273fcbf54267f3fe67f3ed166872cead3 (diff)
downloadpidgin-a74c19b9c5739f27cfbd9e28c46bbe54e0e2add7.tar.gz
propagate from branch 'im.pidgin.pidgin.next.minor' (head d24c4a9d28f21eaa47bd76e50ed31053733edcb1)
to branch 'im.pidgin.pidgin' (head b60aeb4ba1b0a2368dfeed19db8cbeb808769d1f)
Diffstat (limited to 'libpurple/prefs.h')
-rw-r--r--libpurple/prefs.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/libpurple/prefs.h b/libpurple/prefs.h
index 3ed097cd8b..3129719c08 100644
--- a/libpurple/prefs.h
+++ b/libpurple/prefs.h
@@ -30,17 +30,17 @@
#include <glib.h>
/**
- * Pref data types.
+ * Preference data types.
*/
typedef enum _PurplePrefType
{
- PURPLE_PREF_NONE,
- PURPLE_PREF_BOOLEAN,
- PURPLE_PREF_INT,
- PURPLE_PREF_STRING,
- PURPLE_PREF_STRING_LIST,
- PURPLE_PREF_PATH,
- PURPLE_PREF_PATH_LIST
+ PURPLE_PREF_NONE, /**< No type. */
+ PURPLE_PREF_BOOLEAN, /**< Boolean. */
+ PURPLE_PREF_INT, /**< Integer. */
+ PURPLE_PREF_STRING, /**< String. */
+ PURPLE_PREF_STRING_LIST, /**< List of strings. */
+ PURPLE_PREF_PATH, /**< Path. */
+ PURPLE_PREF_PATH_LIST /**< List of paths. */
} PurplePrefType;