summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorAndrzej J.R. Hunt <andrzej@ahunt.org>2012-08-22 23:29:26 +0200
committerAndrzej J.R. Hunt <andrzej@ahunt.org>2012-08-22 23:30:55 +0200
commit89303460e906c2de0e424d8d44095a084565e379 (patch)
tree7bc6a80d2bcdcfd5c1f4b16fed972c11a7e56921 /sd
parent091c1b6fc5cb6b3c87c8e3c0fdec1f6974da10cf (diff)
Get rid of my no longer needed fprintfs.
Change-Id: Ic4878cb8c25e7a361d293968037430f7f956ddc1
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/remotecontrol/BluetoothServer.cxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/sd/source/ui/remotecontrol/BluetoothServer.cxx b/sd/source/ui/remotecontrol/BluetoothServer.cxx
index bcff4addb44f..0bbedb480926 100644
--- a/sd/source/ui/remotecontrol/BluetoothServer.cxx
+++ b/sd/source/ui/remotecontrol/BluetoothServer.cxx
@@ -58,7 +58,6 @@ void BluetoothServer::execute()
GDBusConnection* aConnection = g_bus_get_sync( G_BUS_TYPE_SYSTEM, NULL, &aError );
if ( aError )
{
- fprintf( stderr, aError->message );
g_error_free( aError );
}
@@ -70,10 +69,9 @@ void BluetoothServer::execute()
GVariant *aAdapterName = g_variant_get_child_value( aAdapter, 0 );
if ( aError )
{
- fprintf( stderr, aError->message );
g_error_free( aError );
}
- fprintf( stderr, (const char*) g_variant_get_string( aAdapterName, NULL ) );
+// fprintf( stderr, (const char*) g_variant_get_string( aAdapterName, NULL ) );
// GDBusObjectManager* aManager = g_dbus_object_manager_client_new_sync( aConnection,
@@ -94,7 +92,6 @@ void BluetoothServer::execute()
G_DBUS_CALL_FLAGS_NONE, -1, NULL, &aError);
if ( aError )
{
- fprintf( stderr, aError->message );
g_error_free( aError );
}
(void) aRecordHandle;
@@ -185,7 +182,7 @@ void BluetoothServer::execute()
close( aSocket );
return;
} else {
- fprintf( stderr, "Accepted Bluetooth\n" );
+// fprintf( stderr, "Accepted Bluetooth\n" );
Communicator* pCommunicator = new Communicator( new BufferedStreamSocket( bSocket) );
mpCommunicators->push_back( pCommunicator );