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
commitf62287f17796d08d34b0099b9e89b388de5169ae (patch)
tree6e45a0108112686df5c94b708c2be3c2f5325035 /configmgr
parent568308cc6c84ed198ddd58c4a478c68ddf216daa (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 204ff4ddc8..852216ff88 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 4a3ddf1329..67deee34b1 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() )