comparison src/pluginpref.c @ 10414:26eac2362c32

[gaim-migrate @ 11664] I'm starting to feel better. Little change here, little change there. Mostly I added a function gaim_util_write_xml_file to be used to write our config files. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 25 Dec 2004 18:33:27 +0000
parents 1ae82c0c24ee
children 8ae981f2c9cb
comparison
equal deleted inserted replaced
10413:960b6a41d02f 10414:26eac2362c32
207 gaim_debug(GAIM_DEBUG_INFO, "pluginpref", 207 gaim_debug(GAIM_DEBUG_INFO, "pluginpref",
208 "gaim_plugin_pref_set_bounds: %s is not an integer pref\n", 208 "gaim_plugin_pref_set_bounds: %s is not an integer pref\n",
209 pref->name); 209 pref->name);
210 return; 210 return;
211 } 211 }
212 212
213 if(min > max) { 213 if(min > max) {
214 tmp = min; 214 tmp = min;
215 min = max; 215 min = max;
216 max = tmp; 216 max = tmp;
217 } 217 }