summaryrefslogtreecommitdiff
path: root/sw/source/filter/html/htmlfly.hxx
diff options
context:
space:
mode:
authorPalenik Mihály <palenik.mihaly@gmail.com>2013-07-25 15:15:25 +0200
committerMiklos Vajna <vmiklos@suse.cz>2013-08-06 09:04:41 +0000
commitaf8390dd6fd280ed3ac5178c93707958d7ea4bbd (patch)
tree137fcf46dcd57dacaff324248cf5f60e0aee726e /sw/source/filter/html/htmlfly.hxx
parent4ae08f617b7c05878988e7e58a5ecbf46e20ebc9 (diff)
Change String to OUString in some class.
I changed String class to OUString class in the following: SwHTMLPosFlyFrm, CSS1Parser, SvxCSS1Parser, SwCSS1Parser classes, CSS1PropEntry struct and htmlctxt.cxx file. Change-Id: I5d474a62c28ff3ee3848abb414acdf1b69492278 Reviewed-on: https://gerrit.libreoffice.org/5234 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@suse.cz>
Diffstat (limited to 'sw/source/filter/html/htmlfly.hxx')
-rw-r--r--sw/source/filter/html/htmlfly.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/html/htmlfly.hxx b/sw/source/filter/html/htmlfly.hxx
index 1854acecc541..ca7923759ff7 100644
--- a/sw/source/filter/html/htmlfly.hxx
+++ b/sw/source/filter/html/htmlfly.hxx
@@ -89,7 +89,7 @@ class SwHTMLPosFlyFrm
const SdrObject *pSdrObject; // ggf. Sdr-Objekt
SwNodeIndex *pNdIdx; // Node-Index
sal_uInt32 nOrdNum; // Aus SwPosFlyFrm
- xub_StrLen nCntntIdx; // seine Position im Content
+ sal_Int32 nCntntIdx; // seine Position im Content
sal_uInt8 nOutputMode; // Ausgabe-Infos
public:
@@ -105,7 +105,7 @@ public:
const SwNodeIndex& GetNdIndex() const { return *pNdIdx; }
- xub_StrLen GetCntntIndex() const { return nCntntIdx; }
+ sal_Int32 GetCntntIndex() const { return nCntntIdx; }
sal_uInt8 GetOutMode() const { return nOutputMode; }