summaryrefslogtreecommitdiffstats
path: root/svx/source/dialog
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-24 15:42:28 +0200
committerNoel Grandin <noel@peralex.com>2014-03-25 14:32:56 +0200
commit436cd900956b5fd0b6583954c002f8c28ca32698 (patch)
tree00bf0fb7c6daa0041670ce5209e5912780520a66 /svx/source/dialog
parentsvtools: sal_Bool->bool (diff)
downloadcore-436cd900956b5fd0b6583954c002f8c28ca32698.tar.gz
core-436cd900956b5fd0b6583954c002f8c28ca32698.zip
svtools: sal_Bool->bool
Change-Id: Ifd3e643dbc6755839ad4af73ae141fd115ddb4f4
Diffstat (limited to 'svx/source/dialog')
-rw-r--r--svx/source/dialog/checklbx.cxx6
-rw-r--r--svx/source/dialog/ctredlin.cxx2
-rw-r--r--svx/source/dialog/docrecovery.cxx4
-rw-r--r--svx/source/dialog/fontlb.cxx2
4 files changed, 7 insertions, 7 deletions
diff --git a/svx/source/dialog/checklbx.cxx b/svx/source/dialog/checklbx.cxx
index c10def8df75a..d6482442c7d4 100644
--- a/svx/source/dialog/checklbx.cxx
+++ b/svx/source/dialog/checklbx.cxx
@@ -89,7 +89,7 @@ void SvxCheckListBox::InsertEntry( const OUString& rStr, sal_uLong nPos,
void* pUserData,
SvLBoxButtonKind eButtonKind )
{
- SvTreeListBox::InsertEntry( rStr, NULL, sal_False, nPos, pUserData,
+ SvTreeListBox::InsertEntry( rStr, NULL, false, nPos, pUserData,
eButtonKind );
}
@@ -220,7 +220,7 @@ void SvxCheckListBox::MouseButtonDown( const MouseEvent& rMEvt )
if (pItem && pItem->GetType() == SV_ITEM_ID_LBOXBUTTON)
{
SvTreeListBox::MouseButtonDown( rMEvt );
- Select( pEntry, sal_True );
+ Select( pEntry, true );
return;
}
else
@@ -267,7 +267,7 @@ void SvxCheckListBox::KeyInput( const KeyEvent& rKEvt )
-SvTreeListEntry* SvxCheckListBox::InsertEntry( const OUString& rText, SvTreeListEntry* pParent, sal_Bool bChildrenOnDemand, sal_uIntPtr nPos, void* pUserData, SvLBoxButtonKind eButtonKind )
+SvTreeListEntry* SvxCheckListBox::InsertEntry( const OUString& rText, SvTreeListEntry* pParent, bool bChildrenOnDemand, sal_uIntPtr nPos, void* pUserData, SvLBoxButtonKind eButtonKind )
{
return SvTreeListBox::InsertEntry( rText, pParent, bChildrenOnDemand, nPos, pUserData, eButtonKind );
}
diff --git a/svx/source/dialog/ctredlin.cxx b/svx/source/dialog/ctredlin.cxx
index ca7122118861..173dd3f6305a 100644
--- a/svx/source/dialog/ctredlin.cxx
+++ b/svx/source/dialog/ctredlin.cxx
@@ -343,7 +343,7 @@ SvTreeListEntry* SvxRedlinTable::InsertEntry(const OUString& rStr,RedlinData *pU
const OUString aFirstStr( rStr.getToken(0, '\t', nIndex ) );
aCurEntry = nIndex>0 ? rStr.copy(nIndex) : OUString();
- return SvSimpleTable::InsertEntry( aFirstStr, pParent, sal_False, nPos, pUserData );
+ return SvSimpleTable::InsertEntry( aFirstStr, pParent, false, nPos, pUserData );
}
SvTreeListEntry* SvxRedlinTable::CreateEntry() const
diff --git a/svx/source/dialog/docrecovery.cxx b/svx/source/dialog/docrecovery.cxx
index 4ac7a25ed32c..63b2747a4671 100644
--- a/svx/source/dialog/docrecovery.cxx
+++ b/svx/source/dialog/docrecovery.cxx
@@ -1007,7 +1007,7 @@ RecoveryDialog::RecoveryDialog(Window* pParent,
// mark first item
SvTreeListEntry* pFirst = m_aFileListLB.First();
if (pFirst)
- m_aFileListLB.SetCursor(pFirst, sal_True);
+ m_aFileListLB.SetCursor(pFirst, true);
}
@@ -1280,7 +1280,7 @@ void RecoveryDialog::stepNext(TURLInfo* pItem)
if (pInfo->ID != pItem->ID)
continue;
- m_aFileListLB.SetCursor(pEntry, sal_True);
+ m_aFileListLB.SetCursor(pEntry, true);
m_aFileListLB.MakeVisible(pEntry);
m_aFileListLB.Invalidate();
m_aFileListLB.Update();
diff --git a/svx/source/dialog/fontlb.cxx b/svx/source/dialog/fontlb.cxx
index fbd455c45afd..d60b9069bd53 100644
--- a/svx/source/dialog/fontlb.cxx
+++ b/svx/source/dialog/fontlb.cxx
@@ -122,7 +122,7 @@ void SvxFontListBox::SelectEntryPos( sal_uLong nPos, bool bSelect )
void SvxFontListBox::SetNoSelection()
{
- SelectAll( sal_False, sal_True );
+ SelectAll( false, true );
}
sal_uLong SvxFontListBox::GetSelectEntryPos() const