summaryrefslogtreecommitdiff
path: root/framework/source/accelerators/presethandler.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/accelerators/presethandler.cxx
parentc2e98d3cc9e2642d746a9933fcd91230a7378aa1 (diff)
framework: sal_Bool->bool
Change-Id: Ia6e87e2b382bd4005637e14088bde9e809996a25
Diffstat (limited to 'framework/source/accelerators/presethandler.cxx')
-rw-r--r--framework/source/accelerators/presethandler.cxx34
1 files changed, 17 insertions, 17 deletions
diff --git a/framework/source/accelerators/presethandler.cxx b/framework/source/accelerators/presethandler.cxx
index 291e68396adc..6ae1ee2f9ca9 100644
--- a/framework/source/accelerators/presethandler.cxx
+++ b/framework/source/accelerators/presethandler.cxx
@@ -386,8 +386,8 @@ void PresetHandler::connectToResource( PresetHandler::EConfigType
sRelPathShare = sRelPathBuf.makeStringAndClear();
sRelPathUser = sRelPathShare;
- xShare = impl_openPathIgnoringErrors(sRelPathShare, eShareMode, sal_True );
- xUser = impl_openPathIgnoringErrors(sRelPathUser , eUserMode , sal_False);
+ xShare = impl_openPathIgnoringErrors(sRelPathShare, eShareMode, true );
+ xUser = impl_openPathIgnoringErrors(sRelPathUser , eUserMode , false);
}
break;
@@ -401,8 +401,8 @@ void PresetHandler::connectToResource( PresetHandler::EConfigType
sRelPathShare = sRelPathBuf.makeStringAndClear();
sRelPathUser = sRelPathShare;
- xShare = impl_openPathIgnoringErrors(sRelPathShare, eShareMode, sal_True );
- xUser = impl_openPathIgnoringErrors(sRelPathUser , eUserMode , sal_False);
+ xShare = impl_openPathIgnoringErrors(sRelPathShare, eShareMode, true );
+ xUser = impl_openPathIgnoringErrors(sRelPathUser , eUserMode , false);
}
break;
@@ -440,18 +440,18 @@ void PresetHandler::connectToResource( PresetHandler::EConfigType
{
// First try to find the right localized set inside share layer.
// Fallbacks are allowed there.
- OUString aShareLocale( rLanguageTag.getBcp47());
- OUString sLocalizedSharePath(sRelPathShare);
- sal_Bool bAllowFallbacks = sal_True;
- xShare = impl_openLocalizedPathIgnoringErrors(sLocalizedSharePath, eShareMode, sal_True , aShareLocale, bAllowFallbacks);
+ OUString aShareLocale( rLanguageTag.getBcp47());
+ OUString sLocalizedSharePath(sRelPathShare);
+ bool bAllowFallbacks = true;
+ xShare = impl_openLocalizedPathIgnoringErrors(sLocalizedSharePath, eShareMode, true , aShareLocale, bAllowFallbacks);
// The try to locate the right sub dir inside user layer ... without using fallbacks!
// Normaly the corresponding sub dir should be created matching the specified locale.
// Because we allow creation of storages inside user layer by default.
- OUString aUserLocale( rLanguageTag.getBcp47());
+ OUString aUserLocale( rLanguageTag.getBcp47());
OUString sLocalizedUserPath(sRelPathUser);
- bAllowFallbacks = sal_False;
- xUser = impl_openLocalizedPathIgnoringErrors(sLocalizedUserPath, eUserMode , sal_False, aUserLocale, bAllowFallbacks);
+ bAllowFallbacks = false;
+ xUser = impl_openLocalizedPathIgnoringErrors(sLocalizedUserPath, eUserMode, false, aUserLocale, bAllowFallbacks);
sRelPathShare = sLocalizedSharePath;
sRelPathUser = sLocalizedUserPath;
@@ -568,7 +568,7 @@ void PresetHandler::copyPresetToTarget(const OUString& sPreset,
}
css::uno::Reference< css::io::XStream > PresetHandler::openPreset(const OUString& sPreset,
- sal_Bool bUseNoLangGlobal)
+ bool bUseNoLangGlobal)
{
css::uno::Reference< css::embed::XStorage > xFolder;
{
@@ -589,7 +589,7 @@ css::uno::Reference< css::io::XStream > PresetHandler::openPreset(const OUString
}
css::uno::Reference< css::io::XStream > PresetHandler::openTarget(const OUString& sTarget ,
- sal_Bool bCreateIfMissing)
+ bool bCreateIfMissing)
{
css::uno::Reference< css::embed::XStorage > xFolder;
{
@@ -727,7 +727,7 @@ void PresetHandler::removeStorageListener(IStorageListener* pListener)
css::uno::Reference< css::embed::XStorage > PresetHandler::impl_openPathIgnoringErrors(const OUString& sPath ,
sal_Int32 eMode ,
- sal_Bool bShare)
+ bool bShare)
{
css::uno::Reference< css::embed::XStorage > xPath;
try
@@ -747,7 +747,7 @@ css::uno::Reference< css::embed::XStorage > PresetHandler::impl_openPathIgnoring
::std::vector< OUString >::const_iterator PresetHandler::impl_findMatchingLocalizedValue(
const ::std::vector< OUString >& lLocalizedValues,
OUString& rLanguageTag,
- sal_Bool bAllowFallbacks )
+ bool bAllowFallbacks )
{
::std::vector< OUString >::const_iterator pFound = lLocalizedValues.end();
if (bAllowFallbacks)
@@ -777,9 +777,9 @@ css::uno::Reference< css::embed::XStorage > PresetHandler::impl_openPathIgnoring
css::uno::Reference< css::embed::XStorage > PresetHandler::impl_openLocalizedPathIgnoringErrors(
OUString& sPath ,
sal_Int32 eMode ,
- sal_Bool bShare ,
+ bool bShare ,
OUString& rLanguageTag ,
- sal_Bool bAllowFallback)
+ bool bAllowFallback)
{
css::uno::Reference< css::embed::XStorage > xPath = impl_openPathIgnoringErrors(sPath, eMode, bShare);
::std::vector< OUString > lSubFolders = impl_getSubFolderNames(xPath);