summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2014-12-15 12:37:28 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-12-15 12:44:12 +0100
commit26e564db14fcb3c229d30a0d5fe232b3d768343f (patch)
tree31fcd41bc0084c811eccfbc0b31041b5ecb18e5d
parent26fdaa2bae87f9d6079a184491be84d8def2e336 (diff)
ucbhelper::InteractionAuthFallback::getCode() can be an implementation detail
Change-Id: I4967e5e12aa348692b3b954398faede843db381b
-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( );
};