diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-01-01 13:57:50 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@suse.cz> | 2013-02-06 20:40:44 +0100 |
commit | 478508a2410f1bff94af8ee9dfb1ea1e65cac09c (patch) | |
tree | 9bfcbee3f300fad914b306b8459fcdee2c03f577 /sd | |
parent | a925e55a00c51925b8714511c6c40583b3442734 (diff) |
WaE: private field 'mPreviouslyDiscoverable' is not used
Change-Id: Ib3f16646035fe29aa64608a17f1a3063f9ebde95
Signed-off-by: Jan Holesovsky <kendy@suse.cz>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/dlg/RemoteDialog.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/dlg/RemoteDialog.cxx b/sd/source/ui/dlg/RemoteDialog.cxx index d5c66caa6296..97b1f3cf6f42 100644 --- a/sd/source/ui/dlg/RemoteDialog.cxx +++ b/sd/source/ui/dlg/RemoteDialog.cxx @@ -25,6 +25,8 @@ RemoteDialog::RemoteDialog( Window *pWindow ) : mClientBox( this, NULL, SdResId( LB_SERVERS ) ), mPreviouslyDiscoverable() { + (void) mPreviouslyDiscoverable; // avoid warnings about unused member + #ifdef ENABLE_SDREMOTE FreeResource(); @@ -47,8 +49,6 @@ RemoteDialog::RemoteDialog( Window *pWindow ) : mButtonConnect.SetClickHdl( LINK( this, RemoteDialog, HandleConnectButton ) ); SetCloseHdl( LINK( this, RemoteDialog, CloseHdl ) ); mButtonCancel.SetClickHdl( LINK( this, RemoteDialog, CloseHdl ) ); -#else - (void) mPreviouslyDiscoverable; // avoid warnings about unused member #endif } |