summaryrefslogtreecommitdiffstats
path: root/framework/source/uifactory/uicontrollerfactory.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-04 15:53:21 +0200
committerNoel Grandin <noel@peralex.com>2014-04-07 13:53:49 +0200
commita6287e21f1dab6ae382c24ceeb4c0212b7cad2d7 (patch)
treef0bb68a88c56647fc9165ec69cc05cd5bc441ea6 /framework/source/uifactory/uicontrollerfactory.cxx
parentdrawinglayer: sal_Bool->bool (diff)
downloadcore-a6287e21f1dab6ae382c24ceeb4c0212b7cad2d7.tar.gz
core-a6287e21f1dab6ae382c24ceeb4c0212b7cad2d7.zip
framework: sal_Bool->bool
Change-Id: Ia6e87e2b382bd4005637e14088bde9e809996a25
Diffstat (limited to 'framework/source/uifactory/uicontrollerfactory.cxx')
-rw-r--r--framework/source/uifactory/uicontrollerfactory.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/framework/source/uifactory/uicontrollerfactory.cxx b/framework/source/uifactory/uicontrollerfactory.cxx
index ed52637ae649..50b19fe57c82 100644
--- a/framework/source/uifactory/uicontrollerfactory.cxx
+++ b/framework/source/uifactory/uicontrollerfactory.cxx
@@ -60,7 +60,7 @@ public:
protected:
UIControllerFactory( const css::uno::Reference< css::uno::XComponentContext >& xContext, const rtl::OUString &rUINode );
- sal_Bool m_bConfigRead;
+ bool m_bConfigRead;
css::uno::Reference< css::uno::XComponentContext > m_xContext;
ConfigurationAccess_ControllerFactory* m_pConfigAccess;
@@ -72,7 +72,7 @@ UIControllerFactory::UIControllerFactory(
const Reference< XComponentContext >& xContext,
const rtl::OUString &rConfigurationNode )
: UIControllerFactory_BASE(m_aMutex)
- , m_bConfigRead( sal_False )
+ , m_bConfigRead( false )
, m_xContext( xContext )
, m_pConfigAccess()
{
@@ -108,7 +108,7 @@ throw (Exception, RuntimeException, std::exception)
if ( !m_bConfigRead )
{
- m_bConfigRead = sal_True;
+ m_bConfigRead = true;
m_pConfigAccess->readConfigurationData();
}
@@ -173,7 +173,7 @@ throw (Exception, RuntimeException, std::exception)
if ( !m_bConfigRead )
{
- m_bConfigRead = sal_True;
+ m_bConfigRead = true;
m_pConfigAccess->readConfigurationData();
}
@@ -203,7 +203,7 @@ throw (css::uno::RuntimeException, std::exception)
if ( !m_bConfigRead )
{
- m_bConfigRead = sal_True;
+ m_bConfigRead = true;
m_pConfigAccess->readConfigurationData();
}
@@ -221,7 +221,7 @@ throw (RuntimeException, std::exception)
if ( !m_bConfigRead )
{
- m_bConfigRead = sal_True;
+ m_bConfigRead = true;
m_pConfigAccess->readConfigurationData();
}
@@ -239,7 +239,7 @@ throw (RuntimeException, std::exception)
if ( !m_bConfigRead )
{
- m_bConfigRead = sal_True;
+ m_bConfigRead = true;
m_pConfigAccess->readConfigurationData();
}