diff src/debug.c @ 7035:feb3d21a7794

[gaim-migrate @ 7598] Standardized the UI op accessor functions in every file. They're now properly namespaced. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 29 Sep 2003 23:39:02 +0000
parents acc4376ce062
children f25119847c5b
line wrap: on
line diff
--- a/src/debug.c	Mon Sep 29 22:56:15 2003 +0000
+++ b/src/debug.c	Mon Sep 29 23:39:02 2003 +0000
@@ -35,7 +35,7 @@
 	g_return_if_fail(level != GAIM_DEBUG_ALL);
 	g_return_if_fail(format != NULL);
 
-	ops = gaim_get_debug_ui_ops();
+	ops = gaim_debug_get_ui_ops();
 
 	if (ops != NULL && ops->print != NULL)
 		ops->print(level, category, format, args);
@@ -116,13 +116,13 @@
 }
 
 void
-gaim_set_debug_ui_ops(GaimDebugUiOps *ops)
+gaim_debug_set_ui_ops(GaimDebugUiOps *ops)
 {
 	debug_ui_ops = ops;
 }
 
 GaimDebugUiOps *
-gaim_get_debug_ui_ops(void)
+gaim_debug_get_ui_ops(void)
 {
 	return debug_ui_ops;
 }