From: <de...@us...> - 2006-10-13 00:28:23
|
Revision: 17474 http://svn.sourceforge.net/gaim/?rev=17474&view=rev Author: deryni9 Date: 2006-10-12 17:28:18 -0700 (Thu, 12 Oct 2006) Log Message: ----------- 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. Modified Paths: -------------- trunk/libgaim/pluginpref.h trunk/libgaim/prefs.h Modified: trunk/libgaim/pluginpref.h =================================================================== --- trunk/libgaim/pluginpref.h 2006-10-13 00:26:54 UTC (rev 17473) +++ trunk/libgaim/pluginpref.h 2006-10-13 00:28:18 UTC (rev 17474) @@ -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, Modified: trunk/libgaim/prefs.h =================================================================== --- trunk/libgaim/prefs.h 2006-10-13 00:26:54 UTC (rev 17473) +++ trunk/libgaim/prefs.h 2006-10-13 00:28:18 UTC (rev 17474) @@ -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 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |