ucbhelper/source/provider/authenticationfallback.cxx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-)
New commits: commit e195b81b4a183a1c2ebbbc39d56a08009438f75e Author: Mihai Varga <mihai.m...@gmail.com> Date: Sat Jun 28 12:34:18 2014 +0300 the request implementation Change-Id: I282db572f4337adb557a8a86f3e29546a6f690af diff --git a/ucbhelper/source/provider/authenticationfallback.cxx b/ucbhelper/source/provider/authenticationfallback.cxx index 6692ac8..8171cc2 100644 --- a/ucbhelper/source/provider/authenticationfallback.cxx +++ b/ucbhelper/source/provider/authenticationfallback.cxx @@ -17,6 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <com/sun/star/ucb/AuthenticationFallbackRequest.hpp> #include <ucbhelper/authenticationfallback.hxx> using namespace com::sun::star; @@ -27,8 +28,12 @@ AuthenticationFallbackRequest::AuthenticationFallbackRequest( const OUString & rURL ) { - m_Instructions = rInstructions; - m_Url = rURL; + ucb::AuthenticationFallbackRequest aRequest; + aRequest.instructions = rInstructions; + aRequest.url = rURL; + + setRequest( uno::makeAny( aRequest ) ); + uno::Sequence< uno::Reference< task::XInteractionContinuation > > aContinuations( 3 ); aContinuations[ 0 ] = new InteractionAbort( this ); _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits