summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaol?n McNamara <cmc@openoffice.org>2010-07-06 11:15:38 +0100
committerCaol?n McNamara <cmc@openoffice.org>2010-07-06 11:15:38 +0100
commitea5ba44eab63c55d02d57aeb03edc672f2258cb6 (patch)
tree42217317be75d2818095eebf7d9f5cb9ca55d785
parent471be9b9377c5be7aeda0a9b3025b71e121abb83 (diff)
cmcfixes76: #i112819# oops, revert part of wrong patch to fix overly const member
-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 3cdd595666cc..0879e3574da3 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 ) )