changeset 14720:e68e20e6a653

[gaim-migrate @ 17474] As far as I can tell GaimStringFormatType is only used by the pluginpref api and was added as part of a change to the pluginpref stuff, so why it was put in prefs.h I'm not sure, pluginpref.h seems like a better place to me. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Fri, 13 Oct 2006 00:28:18 +0000
parents 2e4690852fd7
children 90882b641dda
files libgaim/pluginpref.h libgaim/prefs.h
diffstat 2 files changed, 10 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/libgaim/pluginpref.h	Fri Oct 13 00:26:54 2006 +0000
+++ b/libgaim/pluginpref.h	Fri Oct 13 00:28:18 2006 +0000
@@ -29,6 +29,16 @@
 typedef struct _GaimPluginPrefFrame		GaimPluginPrefFrame;
 typedef struct _GaimPluginPref			GaimPluginPref;
 
+/**
+ * String format for preferences.
+ */
+typedef enum
+{
+	GAIM_STRING_FORMAT_TYPE_NONE      = 0,
+	GAIM_STRING_FORMAT_TYPE_MULTILINE = 1 << 0,
+	GAIM_STRING_FORMAT_TYPE_HTML      = 1 << 1
+} GaimStringFormatType;
+
 typedef enum {
 	GAIM_PLUGIN_PREF_NONE,
 	GAIM_PLUGIN_PREF_CHOICE,
--- a/libgaim/prefs.h	Fri Oct 13 00:26:54 2006 +0000
+++ b/libgaim/prefs.h	Fri Oct 13 00:28:18 2006 +0000
@@ -29,16 +29,6 @@
 #include <glib.h>
 
 /**
- * String format for preferences.
- */
-typedef enum
-{
-	GAIM_STRING_FORMAT_TYPE_NONE      = 0,
-	GAIM_STRING_FORMAT_TYPE_MULTILINE = 1 << 0,
-	GAIM_STRING_FORMAT_TYPE_HTML      = 1 << 1
-} GaimStringFormatType;
-
-/**
  * Pref data types.
  */
 typedef enum _GaimPrefType