comparison src/prefs.c @ 4755:54fbd9769677

[gaim-migrate @ 5072] This fixes the debug window. It's probably not an ideal fix, but it works. Some kind of core/ui splittage here would be nice. I also made the gtk convo destroy function remove the timer to redraw animated buddy icons, if it exists. This doesn't really affect anything, since the redraw function checks to make sure the convo exists, but it's probably more better this way. Also, I meant to misspell "definitely." Really. I did. You don't believe me? It's ok, I wouldn't believe me either. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 13 Mar 2003 22:57:58 +0000
parents fd44726a527f
children a1ea914506c9
comparison
equal deleted inserted replaced
4754:ced41239ffd3 4755:54fbd9769677
1912 gtk_widget_destroy(dw->window); 1912 gtk_widget_destroy(dw->window);
1913 dw->window = NULL; 1913 dw->window = NULL;
1914 } 1914 }
1915 } 1915 }
1916 1916
1917 void toggle_debug()
1918 {
1919 misc_options ^= OPT_MISC_DEBUG;
1920 show_debug();
1921 save_prefs();
1922 }
1923
1917 void debug_printf(char *fmt, ...) 1924 void debug_printf(char *fmt, ...)
1918 { 1925 {
1919 va_list ap; 1926 va_list ap;
1920 gchar *s; 1927 gchar *s;
1921 1928