# HG changeset patch # User Mark Doliner # Date 1110067854 0 # Node ID 20cbadb004a08db077a1b752eb941d3d3321e812 # Parent 252598b411d8c6e42c2b24b8c4b735d75aee43b7 [gaim-migrate @ 12181] sf patch #1152650, from Richard Laager Gets rid of a compile warning in oscar committer: Tailor Script diff -r 252598b411d8 -r 20cbadb004a0 src/protocols/oscar/oscar.c --- a/src/protocols/oscar/oscar.c Sat Mar 05 21:31:58 2005 +0000 +++ b/src/protocols/oscar/oscar.c Sun Mar 06 00:10:54 2005 +0000 @@ -7615,6 +7615,7 @@ } } +#if USE_PRPL_PREFERENCES static GaimPluginPrefFrame * get_plugin_pref_frame(GaimPlugin *plugin) { @@ -7631,6 +7632,7 @@ return frame; } +#endif static GaimPluginProtocolInfo prpl_info = { @@ -7700,9 +7702,11 @@ oscar_send_file /* send_file */ }; +#if USE_PRPL_PREFERENCES static GaimPluginUiInfo prefs_info = { get_plugin_pref_frame }; +#endif static GaimPluginInfo info = { @@ -7731,7 +7735,11 @@ NULL, /**< ui_info */ &prpl_info, /**< extra_info */ +#if USE_PRPL_PREFERENCES NULL, /**< prefs_info */ +#else + NULL, /**< prefs_info */ +#endif oscar_actions };