src/connection.c

changeset 5571
b709464f507e
parent 5564
1779a1bfbdb8
child 5581
646cda748437
--- a/src/connection.c	Fri May 30 22:00:50 2003 +0000
+++ b/src/connection.c	Fri May 30 23:03:02 2003 +0000
@@ -301,6 +301,20 @@
 }
 
 void
+gaim_connection_notice(GaimConnection *gc, const char *text)
+{
+	GaimConnectionUiOps *ops;
+
+	g_return_if_fail(gc   != NULL);
+	g_return_if_fail(text != NULL);
+
+	ops = gaim_get_connection_ui_ops();
+
+	if (ops != NULL && ops->notice != NULL)
+		ops->notice(gc, text);
+}
+
+void
 gaim_connection_error(GaimConnection *gc, const char *text)
 {
 	GaimConnectionUiOps *ops;

mercurial