summaryrefslogtreecommitdiff
path: root/editeng/inc/editeng
diff options
context:
space:
mode:
authorCarsten Driesner <cd@openoffice.org>2011-01-28 16:13:02 +0100
committerCarsten Driesner <cd@openoffice.org>2011-01-28 16:13:02 +0100
commit6e0a48a00fd0f6f63cb651fb8bd7dc79a569152b (patch)
treefa7a4e82b29af43d9af68ea21da140deeaf92f93 /editeng/inc/editeng
parentf70d75cfef0a4d2cd64d90b23f7711f18aef7b3c (diff)
removetooltypes01: #ii12600# Fixed issues with gcc on Linux x64
Diffstat (limited to 'editeng/inc/editeng')
-rw-r--r--editeng/inc/editeng/svxrtf.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/editeng/inc/editeng/svxrtf.hxx b/editeng/inc/editeng/svxrtf.hxx
index 0a2df7f694de..a56c28e42a81 100644
--- a/editeng/inc/editeng/svxrtf.hxx
+++ b/editeng/inc/editeng/svxrtf.hxx
@@ -67,7 +67,7 @@ class SvxNodeIdx
{
public:
virtual ~SvxNodeIdx() {}
- virtual sal_uInt32 GetIdx() const = 0;
+ virtual sal_uLong GetIdx() const = 0;
virtual SvxNodeIdx* Clone() const = 0; // erzeuge von sich eine Kopie
};
@@ -76,7 +76,7 @@ class SvxPosition
public:
virtual ~SvxPosition() {}
- virtual sal_uInt32 GetNodeIdx() const = 0;
+ virtual sal_uLong GetNodeIdx() const = 0;
virtual xub_StrLen GetCntIdx() const = 0;
virtual SvxPosition* Clone() const = 0; // erzeuge von sich eine Kopie
@@ -439,8 +439,8 @@ public:
void MoveFullNode(const SvxNodeIdx &rOldNode,
const SvxNodeIdx &rNewNode);
- sal_uInt32 GetSttNodeIdx() const { return pSttNd->GetIdx(); }
- sal_uInt32 GetEndNodeIdx() const { return pEndNd->GetIdx(); }
+ sal_uLong GetSttNodeIdx() const { return pSttNd->GetIdx(); }
+ sal_uLong GetEndNodeIdx() const { return pEndNd->GetIdx(); }
const SvxNodeIdx& GetSttNode() const { return *pSttNd; }
const SvxNodeIdx& GetEndNode() const { return *pEndNd; }