libpurple/connection.c

changeset 41709
c8555ca0fe5e
parent 41685
ca22b00972d4
child 41710
51941cbd4306
--- a/libpurple/connection.c	Mon Sep 19 23:51:43 2022 -0500
+++ b/libpurple/connection.c	Mon Sep 19 23:59:49 2022 -0500
@@ -337,24 +337,6 @@
 }
 
 void
-purple_connection_update_progress(PurpleConnection *gc, const char *text,
-                                  size_t step, size_t count)
-{
-	PurpleConnectionUiOps *ops;
-
-	g_return_if_fail(PURPLE_IS_CONNECTION(gc));
-	g_return_if_fail(text != NULL);
-	g_return_if_fail(step < count);
-	g_return_if_fail(count > 1);
-
-	ops = purple_connections_get_ui_ops();
-
-	if(ops != NULL && ops->connect_progress != NULL) {
-		ops->connect_progress(gc, text, step, count);
-	}
-}
-
-void
 purple_connection_notice(PurpleConnection *gc, const char *text) {
 	PurpleConnectionUiOps *ops;
 

mercurial