From 26e564db14fcb3c229d30a0d5fe232b3d768343f Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Mon, 15 Dec 2014 12:37:28 +0100 Subject: ucbhelper::InteractionAuthFallback::getCode() can be an implementation detail Change-Id: I4967e5e12aa348692b3b954398faede843db381b --- include/ucbhelper/interactionrequest.hxx | 4 ++-- offapi/com/sun/star/ucb/XInteractionAuthFallback.idl | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/include/ucbhelper/interactionrequest.hxx b/include/ucbhelper/interactionrequest.hxx index 0671a3a0e3ec..ca86acfb6525 100644 --- a/include/ucbhelper/interactionrequest.hxx +++ b/include/ucbhelper/interactionrequest.hxx @@ -687,8 +687,8 @@ public: // XAuthFallback virtual void SAL_CALL setCode( const OUString& code ) throw (::css::uno::RuntimeException, ::std::exception) SAL_OVERRIDE; - virtual OUString SAL_CALL getCode() - throw (::css::uno::RuntimeException, ::std::exception) SAL_OVERRIDE; + OUString SAL_CALL getCode() + throw (::css::uno::RuntimeException, ::std::exception); }; diff --git a/offapi/com/sun/star/ucb/XInteractionAuthFallback.idl b/offapi/com/sun/star/ucb/XInteractionAuthFallback.idl index cf0f2ecfb841..f4c9a84896cc 100644 --- a/offapi/com/sun/star/ucb/XInteractionAuthFallback.idl +++ b/offapi/com/sun/star/ucb/XInteractionAuthFallback.idl @@ -21,7 +21,6 @@ published interface XInteractionAuthFallback: com::sun::star::task::XInteraction { /* Authentication code submited by the user */ void setCode( [in] string code ); - string getCode( ); }; -- cgit