diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-06-04 09:17:52 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-06-04 09:18:41 +0100 |
commit | 3e66a5b5c6d1f602db2af5b5b44f5f41c83918f9 (patch) | |
tree | 5ac5eda19e2be0ec6913e4b2127d61486a05e0ba /dbaccess | |
parent | e6655225e6ee229fb688fb65324e4e9b949065d5 (diff) |
fix index dialog regression
thanks to sk94 for noticing this when trying to
convert this to .ui
Change-Id: If7130d53acb7c194cf0a9a4301f3573789888b86
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/dlg/indexdialog.cxx | 2 | ||||
-rw-r--r-- | dbaccess/source/ui/inc/indexdialog.hxx | 2 |
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(); |