summaryrefslogtreecommitdiff
path: root/uui
diff options
context:
space:
mode:
authorCaol?n McNamara <cmc@openoffice.org>2010-06-30 15:58:17 +0100
committerCaol?n McNamara <cmc@openoffice.org>2010-06-30 15:58:17 +0100
commit471be9b9377c5be7aeda0a9b3025b71e121abb83 (patch)
treea01a5deb63a123395e9e527eb237337c550d85e1 /uui
parent594aabf05fc7b553acc137889bd7bb6f95bdd98d (diff)
cmcfixes76: #i112819# overly const member
Diffstat (limited to 'uui')
-rw-r--r--[-rwxr-xr-x]uui/source/iahndl.cxx6
-rwxr-xr-xuui/source/loginerr.hxx2
2 files changed, 4 insertions, 4 deletions
diff --git a/uui/source/iahndl.cxx b/uui/source/iahndl.cxx
index 0879e3574da3..3cdd595666cc 100755..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 ) )
diff --git a/uui/source/loginerr.hxx b/uui/source/loginerr.hxx
index ec1317dbd805..39bbfb7d820c 100755
--- a/uui/source/loginerr.hxx
+++ b/uui/source/loginerr.hxx
@@ -68,7 +68,7 @@ public:
const String& GetUserName() const { return m_aUserName; }
const String& GetPassword() const { return m_aPassword; }
const String& GetPasswordToModify() const { return m_aPasswordToModify; }
- const bool IsRecommendToOpenReadonly() const { return m_bRecommendToOpenReadonly; }
+ bool IsRecommendToOpenReadonly() const { return m_bRecommendToOpenReadonly; }
const String& GetPath() const { return m_aPath; }
const String& GetErrorText() const { return m_aErrorText; }
BOOL GetCanRememberPassword() const { return ( m_nFlags & LOGINERROR_FLAG_CAN_REMEMBER_PASSWORD ); }