From 7b630bb7d83935a186202ca0dbeddada38e531f2 Mon Sep 17 00:00:00 2001 From: Ivo Hinkelmann Date: Tue, 5 Feb 2008 11:21:17 +0000 Subject: INTEGRATION: CWS fwk83_SRC680 (1.9.130); FILE MERGED 2008/01/15 08:00:35 pb 1.9.130.1: fix; #i85134# FolderPicker_getSupportedServiceNames() without dialogs.FolderPicker --- fpicker/source/unx/gnome/SalGtkFolderPicker.cxx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'fpicker') diff --git a/fpicker/source/unx/gnome/SalGtkFolderPicker.cxx b/fpicker/source/unx/gnome/SalGtkFolderPicker.cxx index 8df3ac55dc0c..f71d576228c2 100644 --- a/fpicker/source/unx/gnome/SalGtkFolderPicker.cxx +++ b/fpicker/source/unx/gnome/SalGtkFolderPicker.cxx @@ -4,9 +4,9 @@ * * $RCSfile: SalGtkFolderPicker.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: obo $ $Date: 2006-09-16 17:52:23 $ + * last change: $Author: ihi $ $Date: 2008-02-05 12:21:17 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -110,10 +110,9 @@ namespace // controling event notifications uno::Sequence SAL_CALL FolderPicker_getSupportedServiceNames() { - uno::Sequence aRet(3); - aRet[0] = rtl::OUString::createFromAscii( "com.sun.star.ui.dialogs.FolderPicker" ); - aRet[1] = rtl::OUString::createFromAscii( "com.sun.star.ui.dialogs.SystemFolderPicker" ); - aRet[2] = rtl::OUString::createFromAscii( "com.sun.star.ui.dialogs.GtkFolderPicker" ); + uno::Sequence aRet(2); + aRet[0] = rtl::OUString::createFromAscii( "com.sun.star.ui.dialogs.SystemFolderPicker" ); + aRet[1] = rtl::OUString::createFromAscii( "com.sun.star.ui.dialogs.GtkFolderPicker" ); return aRet; } } -- cgit