summaryrefslogtreecommitdiff
path: root/cui
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 /cui
parentcafdef8109f11435542f41d336f44771b6ced02e (diff)
svtools: sal_Bool->bool
Change-Id: I0c2e9314d85860831b29db76c89c8776c1b071b9
Diffstat (limited to 'cui')
-rw-r--r--cui/source/options/connpooloptions.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/cui/source/options/connpooloptions.cxx b/cui/source/options/connpooloptions.cxx
index 874b8c7f7fe9..8af4d6ccb038 100644
--- a/cui/source/options/connpooloptions.cxx
+++ b/cui/source/options/connpooloptions.cxx
@@ -71,7 +71,7 @@ namespace offapp
virtual void PaintCell( OutputDevice& rDev, const Rectangle& rRect, sal_uInt16 nColId ) const;
- virtual sal_Bool SeekRow( long nRow );
+ virtual bool SeekRow( long nRow );
virtual sal_Bool SaveModified();
virtual sal_Bool IsTabAllowed(sal_Bool _bForward) const;
@@ -194,10 +194,10 @@ namespace offapp
{
m_aSettings = _rSettings;
- SetUpdateMode(sal_False);
+ SetUpdateMode(false);
RowRemoved(0, GetRowCount());
RowInserted(0, m_aSettings.size());
- SetUpdateMode(sal_True);
+ SetUpdateMode(true);
ActivateCell(1, 0);
}
@@ -274,7 +274,7 @@ namespace offapp
}
- sal_Bool DriverListControl::SeekRow( long _nRow )
+ bool DriverListControl::SeekRow( long _nRow )
{
EditBrowseBox::SeekRow(_nRow);