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
commitac8af3f82986bb9198da21455f7f1a7f6a73f612 (patch)
treeaa5cdf14779827633fc12da2828f128a674e4e46
parentb2f9d27b0b453904e93c9150dcf9aee59ae4110e (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 f3b036dd7c..e90a064993 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 ) )