diff src/core.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 8ab95f4c9800
children 25a616f16b6c
line wrap: on
line diff
--- a/src/core.c	Mon Sep 29 22:56:15 2003 +0000
+++ b/src/core.c	Mon Sep 29 23:39:02 2003 +0000
@@ -60,7 +60,7 @@
 	core->ui = g_strdup(ui);
 	core->reserved = NULL;
 
-	ops = gaim_get_core_ui_ops();
+	ops = gaim_core_get_ui_ops();
 
 	/* The signals subsystem is important and should be first. */
 	gaim_signals_init();
@@ -106,7 +106,7 @@
 
 	g_return_if_fail(core != NULL);
 
-	ops = gaim_get_core_ui_ops();
+	ops = gaim_core_get_ui_ops();
 
 	if (ops != NULL && ops->quit != NULL)
 		ops->quit();
@@ -173,13 +173,13 @@
 }
 
 void
-gaim_set_core_ui_ops(GaimCoreUiOps *ops)
+gaim_core_set_ui_ops(GaimCoreUiOps *ops)
 {
 	_ops = ops;
 }
 
 GaimCoreUiOps *
-gaim_get_core_ui_ops(void)
+gaim_core_get_ui_ops(void)
 {
 	return _ops;
 }