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
commita4d7dbf897e41a1afda6c2b6f0e5cc35920a1cf3 (patch)
tree3cdd186f17cdbab6c002691ed2044d87d78d47db /uui
parent0708aa63dd280b345553f278b5a58a5676adafcc (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 e90a064993..f3b036dd7c 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 ) )