summaryrefslogtreecommitdiff
path: root/uui
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2010-10-11 15:20:03 +0100
committerCaolán McNamara <caolanm@redhat.com>2010-10-12 15:34:49 +0100
commit20658054d8bd6380b4b175b552ccc1480c49d01c (patch)
tree24ae751e6c98027431d13295b8c17da7af4ce0cc /uui
parentd498765f6ef10cf720636b3dc702b07e7bf693ec (diff)
#i112786# make ConfigManager a well-behaved singleton
Diffstat (limited to 'uui')
-rw-r--r--uui/source/iahndl.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/uui/source/iahndl.cxx b/uui/source/iahndl.cxx
index 0879e3574da3..3cdd595666cc 100644
--- a/uui/source/iahndl.cxx
+++ b/uui/source/iahndl.cxx
@@ -1338,7 +1338,7 @@ UUIInteractionHelper::handleGenericErrorRequest(
{
uno::Any aProductNameAny =
::utl::ConfigManager::GetConfigManager()
- ->GetDirectConfigProperty(
+ .GetDirectConfigProperty(
::utl::ConfigManager::PRODUCTNAME );
aProductNameAny >>= aTitle;
}
@@ -1552,10 +1552,10 @@ UUIInteractionHelper::handleBrokenPackageRequest(
return;
uno::Any aProductNameAny =
- ::utl::ConfigManager::GetConfigManager()->GetDirectConfigProperty(
+ ::utl::ConfigManager::GetConfigManager().GetDirectConfigProperty(
::utl::ConfigManager::PRODUCTNAME );
uno::Any aProductVersionAny =
- ::utl::ConfigManager::GetConfigManager()->GetDirectConfigProperty(
+ ::utl::ConfigManager::GetConfigManager().GetDirectConfigProperty(
::utl::ConfigManager::PRODUCTVERSION );
::rtl::OUString aProductName, aProductVersion;
if ( !( aProductNameAny >>= aProductName ) )