summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdibrow.cxx
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 /svx/source/svdraw/svdibrow.cxx
parentcafdef8109f11435542f41d336f44771b6ced02e (diff)
svtools: sal_Bool->bool
Change-Id: I0c2e9314d85860831b29db76c89c8776c1b071b9
Diffstat (limited to 'svx/source/svdraw/svdibrow.cxx')
-rw-r--r--svx/source/svdraw/svdibrow.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/svdraw/svdibrow.cxx b/svx/source/svdraw/svdibrow.cxx
index 593787219958..c1ab90a3eb4d 100644
--- a/svx/source/svdraw/svdibrow.cxx
+++ b/svx/source/svdraw/svdibrow.cxx
@@ -288,10 +288,10 @@ long _SdrItemBrowserControl::GetRowCount() const
return aList.size();
}
-sal_Bool _SdrItemBrowserControl::SeekRow(long nRow)
+bool _SdrItemBrowserControl::SeekRow(long nRow)
{
- nAktPaintRow=nRow;
- return sal_True;
+ nAktPaintRow = nRow;
+ return true;
}
OUString _SdrItemBrowserControl::GetCellText(long _nRow, sal_uInt16 _nColId) const
@@ -491,7 +491,7 @@ bool _SdrItemBrowserControl::BegChangeEntry(sal_uIntPtr nPos)
if (pEntry!=NULL && !pEntry->bComment) {
SetMode(MYBROWSEMODE & ~BROWSER_KEEPHIGHLIGHT);
pEditControl=new ImpItemEdit(&GetDataWindow(),this,0);
- Rectangle aRect(GetFieldRectPixel(nPos,ITEMBROWSER_VALUECOL_ID,sal_False));
+ Rectangle aRect(GetFieldRectPixel(nPos, ITEMBROWSER_VALUECOL_ID, false));
aRect.Left()+=2; // little offset for the Edit, so it's exact to the pixel
aRect.Right()--;
pEditControl->SetPosSizePixel(aRect.TopLeft(),aRect.GetSize());