fix index dialog regression

thanks to sk94 for noticing this when trying to
convert this to .ui

Change-Id: If7130d53acb7c194cf0a9a4301f3573789888b86
This commit is contained in:
Caolán McNamara
2014-06-04 09:17:52 +01:00
parent e6655225e6
commit 3e66a5b5c6
2 changed files with 2 additions and 2 deletions

View File

@@ -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);

View File

@@ -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();