summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-06-04 09:17:52 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-06-04 09:19:44 +0100
commitfcf3364343315f8d391e0c824646b5602240418d (patch)
tree53d3701f65bb1a13504f9e1678374b402d0a3b55 /dbaccess
parent1946977939e4941429383e3a0649ce20ae758930 (diff)
fix index dialog regression
thanks to sk94 for noticing this when trying to convert this to .ui Change-Id: If7130d53acb7c194cf0a9a4301f3573789888b86 (cherry picked from commit 3e66a5b5c6d1f602db2af5b5b44f5f41c83918f9)
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/ui/dlg/indexdialog.cxx2
-rw-r--r--dbaccess/source/ui/inc/indexdialog.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/dlg/indexdialog.cxx b/dbaccess/source/ui/dlg/indexdialog.cxx
index 7cc9953914ab..c713d1005f72 100644
--- a/dbaccess/source/ui/dlg/indexdialog.cxx
+++ b/dbaccess/source/ui/dlg/indexdialog.cxx
@@ -142,7 +142,7 @@ namespace dbaui
enableSelectHandler();
}
- bool DbaIndexList::Select( SvTreeListEntry* pEntry, sal_Bool _bSelect )
+ bool DbaIndexList::Select(SvTreeListEntry* pEntry, bool _bSelect)
{
bool bReturn = SvTreeListBox::Select(pEntry, _bSelect);
diff --git a/dbaccess/source/ui/inc/indexdialog.hxx b/dbaccess/source/ui/inc/indexdialog.hxx
index 7c9100eeeb09..aef406f76d39 100644
--- a/dbaccess/source/ui/inc/indexdialog.hxx
+++ b/dbaccess/source/ui/inc/indexdialog.hxx
@@ -56,7 +56,7 @@ namespace dbaui
void SetEndEditHdl(const Link& _rHdl) { m_aEndEditHdl = _rHdl; }
Link GetEndEditHdl() const { return m_aEndEditHdl; }
- virtual bool Select( SvTreeListEntry* pEntry, sal_Bool bSelect );
+ virtual bool Select(SvTreeListEntry* pEntry, bool bSelect) SAL_OVERRIDE;
void enableSelectHandler();
void disableSelectHandler();