diff options
Diffstat (limited to 'ucbhelper')
4 files changed, 8 insertions, 8 deletions
diff --git a/ucbhelper/inc/ucbhelper/simplecertificatevalidationrequest.hxx b/ucbhelper/inc/ucbhelper/simplecertificatevalidationrequest.hxx index 384d9cdd8f87..be53bb9fd7ba 100755 --- a/ucbhelper/inc/ucbhelper/simplecertificatevalidationrequest.hxx +++ b/ucbhelper/inc/ucbhelper/simplecertificatevalidationrequest.hxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: simplecertificatevalidationrequest.hxx,v $ - * $Revision: 1.3 $ + * $Revision: 1.3.20.1 $ * * This file is part of OpenOffice.org. * @@ -73,7 +73,7 @@ public: * @return the continuation choosen by an interaction handler or * CONTINUATION_UNKNOWN, if the request was not (yet) handled. */ - const sal_Int32 getResponse() const; + sal_Int32 getResponse() const; }; } // namespace ucbhelper diff --git a/ucbhelper/inc/ucbhelper/simpleinteractionrequest.hxx b/ucbhelper/inc/ucbhelper/simpleinteractionrequest.hxx index 26e27de46243..a7dfb86f33da 100644 --- a/ucbhelper/inc/ucbhelper/simpleinteractionrequest.hxx +++ b/ucbhelper/inc/ucbhelper/simpleinteractionrequest.hxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: simpleinteractionrequest.hxx,v $ - * $Revision: 1.4 $ + * $Revision: 1.4.20.1 $ * * This file is part of OpenOffice.org. * @@ -91,7 +91,7 @@ public: * @return the continuation choosen by an interaction handler or * CONTINUATION_UNKNOWN, if the request was not (yet) handled. */ - const sal_Int32 getResponse() const; + sal_Int32 getResponse() const; }; } // namespace ucbhelper diff --git a/ucbhelper/source/provider/simplecertificatevalidationrequest.cxx b/ucbhelper/source/provider/simplecertificatevalidationrequest.cxx index 0b53ce8d127a..975547031621 100755 --- a/ucbhelper/source/provider/simplecertificatevalidationrequest.cxx +++ b/ucbhelper/source/provider/simplecertificatevalidationrequest.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: simplecertificatevalidationrequest.cxx,v $ - * $Revision: 1.3 $ + * $Revision: 1.3.20.1 $ * * This file is part of OpenOffice.org. * @@ -58,7 +58,7 @@ SimpleCertificateValidationRequest::SimpleCertificateValidationRequest( const sa } //========================================================================= -const sal_Int32 SimpleCertificateValidationRequest::getResponse() const +sal_Int32 SimpleCertificateValidationRequest::getResponse() const { rtl::Reference< InteractionContinuation > xSelection = getSelection(); if ( xSelection.is() ) diff --git a/ucbhelper/source/provider/simpleinteractionrequest.cxx b/ucbhelper/source/provider/simpleinteractionrequest.cxx index 116409a6a25c..93fd33cc991f 100644 --- a/ucbhelper/source/provider/simpleinteractionrequest.cxx +++ b/ucbhelper/source/provider/simpleinteractionrequest.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: simpleinteractionrequest.cxx,v $ - * $Revision: 1.6 $ + * $Revision: 1.6.20.1 $ * * This file is part of OpenOffice.org. * @@ -100,7 +100,7 @@ SimpleInteractionRequest::SimpleInteractionRequest( } //========================================================================= -const sal_Int32 SimpleInteractionRequest::getResponse() const +sal_Int32 SimpleInteractionRequest::getResponse() const { rtl::Reference< InteractionContinuation > xSelection = getSelection(); if ( xSelection.is() ) |