summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-21 14:46:13 +0200
committerNoel Grandin <noel@peralex.com>2015-10-21 15:10:24 +0200
commita673713bb35321eaef7ce9f35f5407e0174b664e (patch)
treef07eb91f33f15ddf32849b057f7844966438bac7 /fpicker
parentddee0e30ec93da3b842ee6822980b0a99fa206ce (diff)
more removal of com::sun::star typedefs
Change-Id: Ia73f1b4f1dcfa3f0936359e744afe76e02dcd2eb
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/aqua/FilterHelper.hxx2
-rw-r--r--fpicker/source/office/OfficeFilePicker.hxx4
-rw-r--r--fpicker/source/office/RemoteFilesDialog.hxx1
-rw-r--r--fpicker/source/office/asyncfilepicker.cxx2
-rw-r--r--fpicker/source/office/asyncfilepicker.hxx5
5 files changed, 5 insertions, 9 deletions
diff --git a/fpicker/source/aqua/FilterHelper.hxx b/fpicker/source/aqua/FilterHelper.hxx
index a11a28155e61..0d465b60266e 100644
--- a/fpicker/source/aqua/FilterHelper.hxx
+++ b/fpicker/source/aqua/FilterHelper.hxx
@@ -42,7 +42,7 @@ typedef ::std::list<OUString> OUStringList;
struct FilterEntry
{
protected:
- OUString m_sTitle;
+ OUString m_sTitle;
OUStringList m_sFilterSuffixList;
UnoFilterList m_aSubFilters;
diff --git a/fpicker/source/office/OfficeFilePicker.hxx b/fpicker/source/office/OfficeFilePicker.hxx
index dbf66e20c233..25fad322970d 100644
--- a/fpicker/source/office/OfficeFilePicker.hxx
+++ b/fpicker/source/office/OfficeFilePicker.hxx
@@ -46,7 +46,6 @@ typedef ::std::list < ElementEntry_Impl > ElementList;
typedef css::beans::StringPair UnoFilterEntry;
typedef css::uno::Sequence< UnoFilterEntry > UnoFilterList; // can be transported more effectively
-typedef css::uno::Sequence< OUString > OUStringList; // can be transported more effectively
// class SvtFilePicker ---------------------------------------------------
@@ -74,7 +73,8 @@ protected:
OUString m_aOldHideDirectory;
OUString m_aStandardDir;
- OUStringList m_aBlackList;
+ css::uno::Sequence< OUString >
+ m_aBlackList;
css::uno::Reference< css::ui::dialogs::XFilePickerListener >
m_xListener;
diff --git a/fpicker/source/office/RemoteFilesDialog.hxx b/fpicker/source/office/RemoteFilesDialog.hxx
index f9af46a88da4..991da0ae2685 100644
--- a/fpicker/source/office/RemoteFilesDialog.hxx
+++ b/fpicker/source/office/RemoteFilesDialog.hxx
@@ -64,7 +64,6 @@ enum SvtRemoteDlgType
};
typedef std::shared_ptr< Place > ServicePtr;
-typedef css::uno::Sequence< OUString > OUStringList;
class FileViewContainer;
diff --git a/fpicker/source/office/asyncfilepicker.cxx b/fpicker/source/office/asyncfilepicker.cxx
index 1a693f76697b..e1dade722bb2 100644
--- a/fpicker/source/office/asyncfilepicker.cxx
+++ b/fpicker/source/office/asyncfilepicker.cxx
@@ -60,7 +60,7 @@ namespace svt
const OUString& _rFilter,
sal_Int32 _nMinTimeout,
sal_Int32 _nMaxTimeout,
- const OUStringList& rBlackList )
+ const css::uno::Sequence< OUString >& rBlackList )
{
DBG_TESTSOLARMUTEX();
// if this asserts, we'd need to have an own mutex per instance
diff --git a/fpicker/source/office/asyncfilepicker.hxx b/fpicker/source/office/asyncfilepicker.hxx
index ef4f84121480..981cc5263b75 100644
--- a/fpicker/source/office/asyncfilepicker.hxx
+++ b/fpicker/source/office/asyncfilepicker.hxx
@@ -30,9 +30,6 @@
class SvtFileView;
class SvtFileDialog_Base;
-typedef css::uno::Sequence< OUString > OUStringList;
-
-
namespace svt
{
@@ -79,7 +76,7 @@ namespace svt
const OUString& _rFilter,
sal_Int32 _nMinTimeout,
sal_Int32 _nMaxTimeout,
- const OUStringList& rBlackList = OUStringList() );
+ const css::uno::Sequence< OUString >& rBlackList = css::uno::Sequence< OUString >() );
/// cancels the running action
void cancel();