summaryrefslogtreecommitdiff
path: root/dbaccess/source
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2019-05-16 22:23:31 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-05-17 10:25:59 +0200
commit27ac7f9bcfafde845dcd1979272b66301a75f53c (patch)
treebb4263b8d9e1fbcba3fc1db23049e37fb54467a4 /dbaccess/source
parent52e47276694575f119192f6ddafa69ec7a7eb6b4 (diff)
Replace list by deque in dbfindex (dbaccess)
Change-Id: I9503cce6eff31f08c2762940b881ba1dc8633288 goal: to get rid of std::list when not mandatory Reviewed-on: https://gerrit.libreoffice.org/72434 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'dbaccess/source')
-rw-r--r--dbaccess/source/ui/dlg/dbfindex.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/dlg/dbfindex.hxx b/dbaccess/source/ui/dlg/dbfindex.hxx
index cd086c89b139..d0c23a416a5f 100644
--- a/dbaccess/source/ui/dlg/dbfindex.hxx
+++ b/dbaccess/source/ui/dlg/dbfindex.hxx
@@ -21,7 +21,7 @@
#define INCLUDED_DBACCESS_SOURCE_UI_DLG_DBFINDEX_HXX
#include <vcl/weld.hxx>
-#include <list>
+#include <deque>
namespace dbaui
{
@@ -40,7 +40,7 @@ public:
const OUString& GetIndexFileName() const { return aIndexFileName; }
};
-typedef std::list< OTableIndex > TableIndexList;
+typedef std::deque< OTableIndex > TableIndexList;
// OTableInfo
class ODbaseIndexDialog;
@@ -59,7 +59,7 @@ public:
void WriteInfFile( const OUString& rDSN ) const;
};
-typedef std::list< OTableInfo > TableInfoList;
+typedef std::deque< OTableInfo > TableInfoList;
// IndexDialog
class ODbaseIndexDialog : public weld::GenericDialogController