summaryrefslogtreecommitdiff
path: root/sw/inc/swunohelper.hxx
diff options
context:
space:
mode:
authorBrad Sowden <code@sowden.org>2011-12-29 22:25:11 +1300
committerLuboš Luňák <l.lunak@suse.cz>2012-01-03 18:02:55 +0100
commit8172646815db38744d8ba0dfd959b1afc089fb40 (patch)
tree00eb584e66e92848a35f0bbcabcb4e5978a1df36 /sw/inc/swunohelper.hxx
parent89a8d75c12c6c67f6f7d894fec9ad3edf8839f8a (diff)
Easyhack fdo#38831 remove SvStrings
Diffstat (limited to 'sw/inc/swunohelper.hxx')
-rw-r--r--sw/inc/swunohelper.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/sw/inc/swunohelper.hxx b/sw/inc/swunohelper.hxx
index 9f7b05ba8b13..6d61d2e4fcad 100644
--- a/sw/inc/swunohelper.hxx
+++ b/sw/inc/swunohelper.hxx
@@ -32,6 +32,8 @@
#include <sal/types.h>
#include "swdllapi.h"
+#include <vector>
+
namespace com { namespace sun { namespace star {
namespace uno {
class Any;
@@ -39,7 +41,6 @@ namespace com { namespace sun { namespace star {
}}}
class String;
-class SvStrings;
class SvPtrarr;
namespace SWUnoHelper {
@@ -68,7 +69,8 @@ SW_DLLPUBLIC sal_Bool UCB_IsReadOnlyFileName( const String& rURL );
// pDateTime != 0 -> returns also the modified date/time of
// the files in a SvPtrarr -->
// !! objects must be deleted from the caller!!
-sal_Bool UCB_GetFileListOfFolder( const String& rURL, SvStrings& rList,
+sal_Bool UCB_GetFileListOfFolder( const String& rURL,
+ std::vector<String*>& rList,
const String* pExtension = 0,
SvPtrarr* pDateTimeList = 0 );