diff options
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/sortopt.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/inc/sortopt.hxx b/sw/inc/sortopt.hxx index 35e5982d52a3..aeeb72d5a91f 100644 --- a/sw/inc/sortopt.hxx +++ b/sw/inc/sortopt.hxx @@ -32,6 +32,7 @@ #include <svl/svarray.hxx> #include <tools/string.hxx> #include "swdllapi.h" +#include <vector> enum SwSortOrder { SRT_ASCENDING, SRT_DESCENDING }; enum SwSortDirection { SRT_COLUMNS, SRT_ROWS }; @@ -49,7 +50,7 @@ struct SW_DLLPUBLIC SwSortKey sal_Bool bIsNumeric; }; -SV_DECL_PTRARR(SwSortKeys, SwSortKey*, 3) +typedef std::vector<SwSortKey*> SwSortKeys; struct SW_DLLPUBLIC SwSortOptions { |