From 478508a2410f1bff94af8ee9dfb1ea1e65cac09c Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Tue, 1 Jan 2013 13:57:50 +0200 Subject: WaE: private field 'mPreviouslyDiscoverable' is not used Change-Id: Ib3f16646035fe29aa64608a17f1a3063f9ebde95 Signed-off-by: Jan Holesovsky --- sd/source/ui/dlg/RemoteDialog.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sd') 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 } -- cgit