Kaydet (Commit) 98dced11 authored tarafından Julien Nabet's avatar Julien Nabet

Replace lists by vectors in fpicker/office

Change-Id: Id8d84ddebdb909583bfb136747374c0500c080e5
Reviewed-on: https://gerrit.libreoffice.org/72067
Tested-by: Jenkins
Reviewed-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
üst 425a570a
......@@ -22,7 +22,7 @@
#include "iodlg.hxx"
#include "RemoteFilesDialog.hxx"
#include <list>
#include <vector>
#include <algorithm>
#include <sal/log.hxx>
#include <tools/urlobj.hxx>
......
......@@ -34,15 +34,15 @@
#include "commonpicker.hxx"
#include "pickercallbacks.hxx"
#include <list>
#include <vector>
class Dialog;
struct FilterEntry;
struct ElementEntry_Impl;
enum class PickerFlags;
typedef ::std::list< FilterEntry > FilterList; // can be maintained more effectively
typedef ::std::list < ElementEntry_Impl > ElementList;
typedef ::std::vector< FilterEntry > FilterList; // can be maintained more effectively
typedef ::std::vector< ElementEntry_Impl > ElementList;
typedef css::beans::StringPair UnoFilterEntry;
typedef css::uno::Sequence< UnoFilterEntry > UnoFilterList; // can be transported more effectively
......
......@@ -21,7 +21,7 @@
#include "iodlg.hxx"
#include <list>
#include <vector>
#include <tools/urlobj.hxx>
#include <com/sun/star/container/XContentEnumerationAccess.hpp>
#include <com/sun/star/container/XSet.hpp>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment