summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/ucbhelper/interactionrequest.hxx4
-rw-r--r--offapi/com/sun/star/ucb/XInteractionAuthFallback.idl1
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( );
};