summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr/pcrservices.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-30 11:46:15 +0200
committerNoel Grandin <noel@peralex.com>2014-05-02 08:49:22 +0200
commit7ae4102f171c5f0d452fa78c5c17722bc9649fc5 (patch)
tree40ff03aeaabe4adfdd90bdb82cb6ef6b80381795 /extensions/source/propctrlr/pcrservices.cxx
parent7d2cf383667106efe3e2ea6099fe52206b685c5d (diff)
extensions: sal_Bool->bool
Change-Id: I1730f99c08690138e9aa7aba54304fd7bc51491d
Diffstat (limited to 'extensions/source/propctrlr/pcrservices.cxx')
-rw-r--r--extensions/source/propctrlr/pcrservices.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/propctrlr/pcrservices.cxx b/extensions/source/propctrlr/pcrservices.cxx
index 964b114dbb45..be5304945306 100644
--- a/extensions/source/propctrlr/pcrservices.cxx
+++ b/extensions/source/propctrlr/pcrservices.cxx
@@ -28,7 +28,7 @@ using namespace ::com::sun::star::registry;
extern "C" void SAL_CALL pcr_initializeModule()
{
- static sal_Bool s_bInit = sal_False;
+ static bool s_bInit = false;
if (!s_bInit)
{
createRegistryInfo_OPropertyBrowserController();
@@ -50,7 +50,7 @@ extern "C" void SAL_CALL pcr_initializeModule()
createRegistryInfo_StringRepresentation();
createRegistryInfo_MasterDetailLinkDialog();
createRegistryInfo_FormGeometryHandler();
- s_bInit = sal_True;
+ s_bInit = true;
}
}