diff options
author | Philipp Lohmann [pl] <Philipp.Lohmann@Sun.COM> | 2010-06-05 13:58:32 +0200 |
---|---|---|
committer | Philipp Lohmann [pl] <Philipp.Lohmann@Sun.COM> | 2010-06-05 13:58:32 +0200 |
commit | a6a55f90993af66c12c56fde9244f777a288d023 (patch) | |
tree | 3381fc5770d3121129e3f69f2d1c426b610b5089 /dbaccess/source/ui | |
parent | 33be7aaa803f05176163886321b5dacc0e6843b3 (diff) |
fix warnings
Diffstat (limited to 'dbaccess/source/ui')
-rw-r--r-- | dbaccess/source/ui/app/AppDetailPageHelper.cxx | 2 | ||||
-rw-r--r-- | dbaccess/source/ui/control/FieldDescControl.cxx | 2 | ||||
-rw-r--r-- | dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/dbaccess/source/ui/app/AppDetailPageHelper.cxx b/dbaccess/source/ui/app/AppDetailPageHelper.cxx index 4a0fc5e33..99c82c7c6 100644 --- a/dbaccess/source/ui/app/AppDetailPageHelper.cxx +++ b/dbaccess/source/ui/app/AppDetailPageHelper.cxx @@ -891,6 +891,8 @@ DBTreeListBox* OAppDetailPageHelper::createSimpleTree( ULONG _nHelpId, const Ima // FIXME: HELPID #if 0 pTreeView->SetHelpId(_nHelpId); + #else + (void)_nHelpId; #endif return createTree( pTreeView, _rImage, _rImageHC ); } diff --git a/dbaccess/source/ui/control/FieldDescControl.cxx b/dbaccess/source/ui/control/FieldDescControl.cxx index 5c046555a..9d8d3e656 100644 --- a/dbaccess/source/ui/control/FieldDescControl.cxx +++ b/dbaccess/source/ui/control/FieldDescControl.cxx @@ -1075,6 +1075,8 @@ void OFieldDescControl::InitializeControl(Control* _pControl,ULONG _nHelpId,bool // FIXME: HELPID #if 0 _pControl->SetHelpId(_nHelpId); + #else + (void)_nHelpId; #endif if ( _bAddChangeHandler ) ((OPropListBoxCtrl*)_pControl)->SetSelectHdl(LINK(this,OFieldDescControl,ChangeHdl)); diff --git a/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx b/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx index 52db30297..3d020267e 100644 --- a/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx +++ b/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx @@ -2721,6 +2721,8 @@ void OSelectionBrowseBox::setTextCellContext(const OTableFieldDescRef& _rEntry,c // da TextCell in verschiedenen Kontexten verwendet wird, muss ich den gecachten HelpText loeschen m_pTextCell->SetHelpText(String()); m_pTextCell->SetHelpId(_nHelpId); + #else + (void)_nHelpId; #endif } // ----------------------------------------------------------------------------- |