[gnome-bluetooth] applet: Fix "browse" function call



commit 5714bca20f21c40c28e14225e60df7e4685f2f01
Author: Bastien Nocera <hadess hadess net>
Date:   Tue Sep 13 14:35:53 2011 +0100

    applet: Fix "browse" function call
    
    It was calling itself which was calling itself which was...

 applet/bluetooth-applet.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/applet/bluetooth-applet.c b/applet/bluetooth-applet.c
index 79b2e8d..a0c24e6 100644
--- a/applet/bluetooth-applet.c
+++ b/applet/bluetooth-applet.c
@@ -147,11 +147,11 @@ void bluetooth_applet_browse_address (BluetoothApplet *applet,
 {
 	g_return_if_fail (BLUETOOTH_IS_APPLET (applet));
 
-	bluetooth_applet_browse_address (applet,
-					 address,
-					 timestamp,
-					 callback,
-					 user_data);
+	bluetooth_browse_address (applet,
+				  address,
+				  timestamp,
+				  callback,
+				  user_data);
 }
 
 /**



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]