summaryrefslogtreecommitdiff
path: root/sc/inc/sortparam.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-03 15:11:45 +0200
committerNoel Grandin <noel@peralex.com>2015-08-04 08:55:56 +0200
commit368a3e45a3f126d34f794a9118fcef0e3270cd78 (patch)
tree11d586fd3895dc9b42749b817b9501173d819d39 /sc/inc/sortparam.hxx
parent0fd9b79687a9f58a407da8e46e54637f353e122b (diff)
sc: inline some use-once typedefs
Change-Id: I332e160dda3f167e61f99da1eb0aa6bd72a48b06
Diffstat (limited to 'sc/inc/sortparam.hxx')
-rw-r--r--sc/inc/sortparam.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/sc/inc/sortparam.hxx b/sc/inc/sortparam.hxx
index ed79c37406f6..08af11933888 100644
--- a/sc/inc/sortparam.hxx
+++ b/sc/inc/sortparam.hxx
@@ -38,8 +38,6 @@ struct ScSortKeyState
bool bAscending;
};
-typedef ::std::vector<ScSortKeyState> ScSortKeyStateVec;
-
struct SC_DLLPUBLIC ScSortParam
{
SCCOL nCol1;
@@ -57,9 +55,10 @@ struct SC_DLLPUBLIC ScSortParam
SCTAB nDestTab;
SCCOL nDestCol;
SCROW nDestRow;
- ScSortKeyStateVec maKeyState;
+ ::std::vector<ScSortKeyState>
+ maKeyState;
::com::sun::star::lang::Locale aCollatorLocale;
- OUString aCollatorAlgorithm;
+ OUString aCollatorAlgorithm;
sal_uInt16 nCompatHeader;
ScSortParam();