summaryrefslogtreecommitdiff
path: root/sw/source/core/inc/scriptinfo.hxx
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2013-12-22 21:50:19 +0100
committerMatteo Casalin <matteo.casalin@yahoo.com>2013-12-28 22:40:41 +0100
commit4b9f28c87fec24978b3e43765b8aa312ab5a8817 (patch)
tree3250ae9585bbdea003df638ccfcb6b55ff283d5f /sw/source/core/inc/scriptinfo.hxx
parent3c53039df67b35c495f69f14ccfad882e13a5950 (diff)
Avoid obscure and almost unused typedef
Change-Id: Ia57b39c770adcb506fb8457ca6cdbd3c6a2b0a76
Diffstat (limited to 'sw/source/core/inc/scriptinfo.hxx')
-rw-r--r--sw/source/core/inc/scriptinfo.hxx11
1 files changed, 5 insertions, 6 deletions
diff --git a/sw/source/core/inc/scriptinfo.hxx b/sw/source/core/inc/scriptinfo.hxx
index 2d068626eec2..090f6db4d99e 100644
--- a/sw/source/core/inc/scriptinfo.hxx
+++ b/sw/source/core/inc/scriptinfo.hxx
@@ -29,7 +29,6 @@ class SwTxtNode;
class Point;
class MultiSelection;
typedef std::list< xub_StrLen > PositionList;
-typedef std::deque< xub_StrLen > SvXub_StrLens;
#define SPACING_PRECISION_FACTOR 100
@@ -60,11 +59,11 @@ private:
inline DirectionChangeInfo(xub_StrLen pos, sal_uInt8 typ) : position(pos), type(typ) {};
};
std::vector<DirectionChangeInfo> aDirectionChanges;
- SvXub_StrLens aKashida;
- SvXub_StrLens aKashidaInvalid;
- SvXub_StrLens aNoKashidaLine;
- SvXub_StrLens aNoKashidaLineEnd;
- SvXub_StrLens aHiddenChg;
+ std::deque< xub_StrLen > aKashida;
+ std::deque< xub_StrLen > aKashidaInvalid;
+ std::deque< xub_StrLen > aNoKashidaLine;
+ std::deque< xub_StrLen > aNoKashidaLineEnd;
+ std::deque< xub_StrLen > aHiddenChg;
//! Records a single change in compression.
struct CompressionChangeInfo
{