summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2007-11-19 15:24:53 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2007-11-19 15:24:53 +0000
commit5890230be9a5342d3b6d42538923670ab9db88ba (patch)
tree59bf3d1f0e58da93a1410fe9cf56cb1b1f00f9cc /fpicker
parent777c9dad8d58745f55a8881cced8f4b0bc3647d0 (diff)
INTEGRATION: CWS as6 (1.7.82); FILE MERGED
2007/07/24 13:03:18 as 1.7.82.1: #i63263# support new optional interface XFilePicker2
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/unx/gnome/FPentry.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/fpicker/source/unx/gnome/FPentry.cxx b/fpicker/source/unx/gnome/FPentry.cxx
index 4b8ff1be6ea0..a217fa24cb6b 100644
--- a/fpicker/source/unx/gnome/FPentry.cxx
+++ b/fpicker/source/unx/gnome/FPentry.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: FPentry.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: obo $ $Date: 2006-09-16 17:51:54 $
+ * last change: $Author: ihi $ $Date: 2007-11-19 16:24:53 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -83,6 +83,7 @@ using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::registry;
using namespace ::cppu;
using ::com::sun::star::ui::dialogs::XFilePicker;
+using ::com::sun::star::ui::dialogs::XFilePicker2;
using ::com::sun::star::ui::dialogs::XFolderPicker;
//------------------------------------------------
@@ -93,7 +94,7 @@ static Reference< XInterface > SAL_CALL createFileInstance(
const Reference< XMultiServiceFactory >& rServiceManager )
{
return Reference< XInterface >(
- static_cast< XFilePicker* >(
+ static_cast< XFilePicker2* >(
new SalGtkFilePicker( rServiceManager ) ) );
}