summaryrefslogtreecommitdiffstats
path: root/dbaccess/source/ui/browser/sbagrid.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-21 12:53:51 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-21 12:53:51 +0100
commite8f8f24c8415898c787bbfb629247ed62e73a2b9 (patch)
treedae18a3acbf29c192118e7c003f80df8da8e21ae /dbaccess/source/ui/browser/sbagrid.cxx
parentDon't unnecessarily(?) drop compiler flags when rewriting (diff)
downloadcore-e8f8f24c8415898c787bbfb629247ed62e73a2b9.tar.gz
core-e8f8f24c8415898c787bbfb629247ed62e73a2b9.zip
vcl: sal_Bool -> bool
Change-Id: I2a3e3d3e3266ea0f0fafdd91362076a4aa160f0e
Diffstat (limited to 'dbaccess/source/ui/browser/sbagrid.cxx')
-rw-r--r--dbaccess/source/ui/browser/sbagrid.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/dbaccess/source/ui/browser/sbagrid.cxx b/dbaccess/source/ui/browser/sbagrid.cxx
index b4d0e769eba1..7a5aa0baca72 100644
--- a/dbaccess/source/ui/browser/sbagrid.cxx
+++ b/dbaccess/source/ui/browser/sbagrid.cxx
@@ -635,16 +635,16 @@ void SbaGridHeader::PreExecuteColumnContextMenu(sal_uInt16 nColId, PopupMenu& rM
if (bDBIsReadOnly)
{
- rMenu.EnableItem(SID_FM_HIDECOL, sal_False);
+ rMenu.EnableItem(SID_FM_HIDECOL, false);
PopupMenu* pShowColsMenu = rMenu.GetPopupMenu(SID_FM_SHOWCOLS);
if (pShowColsMenu)
{
// at most 16 items which mean "show column <name>"
for (sal_uInt16 i=1; i<16; ++i)
- pShowColsMenu->EnableItem(i, sal_False);
+ pShowColsMenu->EnableItem(i, false);
// "show cols/more..." and "show cols/all"
- pShowColsMenu->EnableItem(SID_FM_SHOWCOLS_MORE, sal_False);
- pShowColsMenu->EnableItem(SID_FM_SHOWALLCOLS, sal_False);
+ pShowColsMenu->EnableItem(SID_FM_SHOWCOLS_MORE, false);
+ pShowColsMenu->EnableItem(SID_FM_SHOWALLCOLS, false);
}
}