diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-11-27 10:39:28 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-11-27 10:39:28 +0100 |
commit | cc360f0a483e7c68ece7a30424f204d660d74b1c (patch) | |
tree | 0e81c30bf1805cebdd7d3b8097085bf44f0a8528 /vcl/inc/salinst.hxx | |
parent | 41f08d42696fdb1f38baaafdde63088febdfd06d (diff) |
fdo#46808: Missing adaptions to XFolderPicker2
c988da288ec473a28f61ebb53aa3ff82bab11ef4 "fdo#46808, Adapt
ui::dialogs::FolderPicker UNO service to new style" had left some FolderPicker
implementations at XFolderPicker, so creating them caused DeploymentExceptions.
Change-Id: I3463161f9bb87a69a2777c331eb5b93d487790b0
Diffstat (limited to 'vcl/inc/salinst.hxx')
-rw-r--r-- | vcl/inc/salinst.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/inc/salinst.hxx b/vcl/inc/salinst.hxx index 81d0b66cd398..afa9e27cd3e2 100644 --- a/vcl/inc/salinst.hxx +++ b/vcl/inc/salinst.hxx @@ -23,7 +23,7 @@ #include "com/sun/star/uno/Reference.hxx" #include "com/sun/star/uno/XComponentContext.hpp" #include "com/sun/star/ui/dialogs/XFilePicker2.hpp" -#include "com/sun/star/ui/dialogs/XFolderPicker.hpp" +#include "com/sun/star/ui/dialogs/XFolderPicker2.hpp" #include "tools/solar.h" #include "vcl/displayconnectiondispatch.hxx" @@ -168,10 +168,10 @@ public: createFilePicker( const com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext >& ) { return com::sun::star::uno::Reference< com::sun::star::ui::dialogs::XFilePicker2 >(); } - virtual com::sun::star::uno::Reference< com::sun::star::ui::dialogs::XFolderPicker > + virtual com::sun::star::uno::Reference< com::sun::star::ui::dialogs::XFolderPicker2 > createFolderPicker( const com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext >& ) - { return com::sun::star::uno::Reference< com::sun::star::ui::dialogs::XFolderPicker >(); } + { return com::sun::star::uno::Reference< com::sun::star::ui::dialogs::XFolderPicker2 >(); } // callbacks for printer updates virtual void updatePrinterUpdate() {} |