summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-02-19 19:55:12 +0200
committerTor Lillqvist <tml@iki.fi>2013-02-19 19:57:26 +0200
commitf49b4581a0a5056a51712bcabcc66483a87a07c8 (patch)
tree2ed607def9ac3c492bd0fdc1c7766d975763c604 /sd
parent9e7f056bd08b18d084497b0846c7c8f31b82f58a (diff)
Avoid warning on non-Linux: private field 'mpImpl' is not used
Change-Id: I0f7e35254ecbf604c375ccebaa58d769a51e43f1
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/remotecontrol/BluetoothServer.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/remotecontrol/BluetoothServer.cxx b/sd/source/ui/remotecontrol/BluetoothServer.cxx
index 94276b5dc729..9c271aaae8a9 100644
--- a/sd/source/ui/remotecontrol/BluetoothServer.cxx
+++ b/sd/source/ui/remotecontrol/BluetoothServer.cxx
@@ -583,12 +583,12 @@ registerWithDefaultAdapter( DBusConnection *pConnection )
BluetoothServer::BluetoothServer( std::vector<Communicator*>* pCommunicators )
: meWasDiscoverable( UNKNOWN ),
- mpImpl( NULL ),
mpCommunicators( pCommunicators )
{
#ifdef LINUX_BLUETOOTH
mpImpl = new BluetoothServerImpl();
#endif
+ (void) mpImpl; // Avoid warning: private field 'mpImpl' is not used
}
BluetoothServer::~BluetoothServer()