summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-11-10 15:06:12 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-11-10 15:06:12 +0000
commit7e6737cc865d9f0ba44a88b4be0c8460325d7b84 (patch)
tree1a77c19de7eb263e582261883c19c36a2032e9ec /configmgr
parent72339a084c6879c8437aee34a1f9daac50d2366e (diff)
CWS-TOOLING: integrate CWS cmcfixes50
2008-11-10 13:31:50 +0100 cmc r263517 : gio doesn't do anything useful for remote stuff wrt info 2008-11-06 00:11:47 +0100 cmc r263359 : #i93436# pile of other 64bit new gcc warnings 2008-11-05 00:39:03 +0100 cmc r263340 : i95856 let a ppc64 vanilla build succeed 2008-11-04 14:00:25 +0100 cmc r263320 : #i93436# useless const 2008-11-04 11:53:10 +0100 cmc r263314 : #i93436# ambiguous 2008-11-04 11:48:05 +0100 cmc r263313 : #i93436# add some braces 2008-11-04 11:29:24 +0100 cmc r263312 : #i93436# ambiguous 2008-11-04 10:53:46 +0100 cmc r263311 :
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/inc/simpleinteractionrequest.hxx2
-rw-r--r--configmgr/source/misc/simpleinteractionrequest.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/configmgr/source/inc/simpleinteractionrequest.hxx b/configmgr/source/inc/simpleinteractionrequest.hxx
index c4dd6319c9d8..efcf0ff95d14 100644
--- a/configmgr/source/inc/simpleinteractionrequest.hxx
+++ b/configmgr/source/inc/simpleinteractionrequest.hxx
@@ -74,7 +74,7 @@ namespace apihelper {
* @return the continuation choosen by an interaction handler or
* CONTINUATION_UNKNOWN, if the request was not (yet) handled.
*/
- const sal_uInt32 getResponse() const;
+ sal_uInt32 getResponse() const;
};
/** These are the constants that can be passed to the constructor of class
diff --git a/configmgr/source/misc/simpleinteractionrequest.cxx b/configmgr/source/misc/simpleinteractionrequest.cxx
index e1ed64cdc017..254b4165ed2b 100644
--- a/configmgr/source/misc/simpleinteractionrequest.cxx
+++ b/configmgr/source/misc/simpleinteractionrequest.cxx
@@ -74,7 +74,7 @@ SimpleInteractionRequest::SimpleInteractionRequest(
}
//=========================================================================
-const sal_uInt32 SimpleInteractionRequest::getResponse() const
+sal_uInt32 SimpleInteractionRequest::getResponse() const
{
uno::Reference< task::XInteractionContinuation > xSelection = this->getSelection();
if ( xSelection.is() )