diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-02-19 19:55:12 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-02-19 19:57:26 +0200 |
commit | f49b4581a0a5056a51712bcabcc66483a87a07c8 (patch) | |
tree | 2ed607def9ac3c492bd0fdc1c7766d975763c604 /sd/source | |
parent | 9e7f056bd08b18d084497b0846c7c8f31b82f58a (diff) |
Avoid warning on non-Linux: private field 'mpImpl' is not used
Change-Id: I0f7e35254ecbf604c375ccebaa58d769a51e43f1
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/ui/remotecontrol/BluetoothServer.cxx | 2 |
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() |