summaryrefslogtreecommitdiff
path: root/sw/source/ui/index
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-19 14:11:04 +0200
committerNoel Grandin <noel@peralex.com>2014-03-24 08:12:08 +0200
commit1a1fe47731bed27e974094a86b16f91e768c6dc0 (patch)
tree4ac085ccc6ba0b00ce21772a3bdb0594dfd7f607 /sw/source/ui/index
parentcafdef8109f11435542f41d336f44771b6ced02e (diff)
svtools: sal_Bool->bool
Change-Id: I0c2e9314d85860831b29db76c89c8776c1b071b9
Diffstat (limited to 'sw/source/ui/index')
-rw-r--r--sw/source/ui/index/cnttab.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/ui/index/cnttab.cxx b/sw/source/ui/index/cnttab.cxx
index dcb8bc612338..b6fa4bfe2bfb 100644
--- a/sw/source/ui/index/cnttab.cxx
+++ b/sw/source/ui/index/cnttab.cxx
@@ -166,7 +166,7 @@ class SwEntryBrowseBox : public SwEntryBrowseBox_Base
void SetModified() {bModified = true;}
protected:
- virtual sal_Bool SeekRow( long nRow );
+ virtual bool SeekRow( long nRow );
virtual void PaintCell(OutputDevice& rDev, const Rectangle& rRect, sal_uInt16 nColId) const;
virtual void InitController(::svt::CellControllerRef& rController, long nRow, sal_uInt16 nCol);
virtual ::svt::CellController* GetController(long nRow, sal_uInt16 nCol);
@@ -3901,10 +3901,10 @@ Size SwEntryBrowseBox::GetOptimalSize() const
return aSize;
}
-sal_Bool SwEntryBrowseBox::SeekRow( long nRow )
+bool SwEntryBrowseBox::SeekRow( long nRow )
{
nCurrentRow = nRow;
- return sal_True;
+ return true;
}
OUString SwEntryBrowseBox::GetCellText(long nRow, sal_uInt16 nColumn) const
@@ -3974,7 +3974,7 @@ sal_Bool SwEntryBrowseBox::SaveModified()
if(nRow >= aEntryArr.size())
{
aEntryArr.push_back( pEntry );
- RowInserted(nRow, 1, sal_True, sal_True);
+ RowInserted(nRow, 1, true, true);
if(nCol < ITEM_WORDONLY)
{
pController->ClearModified();
@@ -4051,7 +4051,7 @@ void SwEntryBrowseBox::ReadEntries(SvStream& rInStr)
}
if( pToInsert )
aEntryArr.push_back(pToInsert);
- RowInserted(0, aEntryArr.size() + 1, sal_True);
+ RowInserted(0, aEntryArr.size() + 1, true);
}
void SwEntryBrowseBox::WriteEntries(SvStream& rOutStr)
@@ -4129,7 +4129,7 @@ SwAutoMarkDlg_Impl::SwAutoMarkDlg_Impl(Window* pParent, const OUString& rAutoMar
SetText(sTitle);
bool bError = false;
if( bCreateMode )
- m_pEntriesBB->RowInserted(0, 1, sal_True);
+ m_pEntriesBB->RowInserted(0, 1, true);
else
{
SfxMedium aMed( sAutoMarkURL, STREAM_STD_READ );