Kaydet (Commit) 610f6a95 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror,-Wunused-private-field workaround (RemoteDialog)

Change-Id: I6673ec882c40b6cc31b5d42ab3b2f57cd48c9e08
üst 61b37c8b
......@@ -43,6 +43,8 @@ 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
}
......@@ -83,4 +85,4 @@ IMPL_LINK_NOARG( RemoteDialog, CloseHdl )
return 0;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
\ No newline at end of file
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
......@@ -42,4 +42,4 @@ public:
#endif // _SD_REMOTEDIALOG_HXX_
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
\ No newline at end of file
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment