summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-12-14 09:13:37 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-12-15 07:15:09 +0100
commiteab5da91c74e16c9eec4e32fe19686b246902617 (patch)
tree74b77af2fc3868946ddf8b1381f7e3fff6cbe0d6 /include
parentbf151f0716910b56e3538579f4af7ede8f51bbcf (diff)
sal_uIntPtr->sal_uLong in SvxRedlinTable and SvxCheckListBox
which is not a vast improvement, but at least they are now consistent with the other InsertEntry methods in SvTreeListBox Change-Id: I3789f5fba4cdfee07f5c2f78e42f0071eab47c28 Reviewed-on: https://gerrit.libreoffice.org/46478 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/svx/checklbx.hxx2
-rw-r--r--include/svx/ctredlin.hxx6
2 files changed, 4 insertions, 4 deletions
diff --git a/include/svx/checklbx.hxx b/include/svx/checklbx.hxx
index e96d45d057a0..76540dfd225b 100644
--- a/include/svx/checklbx.hxx
+++ b/include/svx/checklbx.hxx
@@ -48,7 +48,7 @@ private:
// Avoid ambiguity with new InsertEntry:
virtual SvTreeListEntry* InsertEntry( const OUString& rText, SvTreeListEntry* pParent,
bool bChildrenOnDemand,
- sal_uIntPtr nPos, void* pUserData,
+ sal_uLong nPos, void* pUserData,
SvLBoxButtonKind eButtonKind ) override;
public:
diff --git a/include/svx/ctredlin.hxx b/include/svx/ctredlin.hxx
index 7ab194dece4a..693c0ba1b506 100644
--- a/include/svx/ctredlin.hxx
+++ b/include/svx/ctredlin.hxx
@@ -166,14 +166,14 @@ public:
The rStr contains the entire redline entry; the columns are delimited by '\t'.
*/
SvTreeListEntry* InsertEntry(const OUString &rStr, RedlinData *pUserData,
- SvTreeListEntry* pParent = nullptr, sal_uIntPtr nPos = TREELIST_APPEND);
+ SvTreeListEntry* pParent = nullptr, sal_uLong nPos = TREELIST_APPEND);
/** Insert a redline entry.
The rStr contains the entire redline entry; the columns are delimited by '\t'.
*/
SvTreeListEntry* InsertEntry(const OUString &rStr, RedlinData *pUserData, const Color&,
- SvTreeListEntry* pParent, sal_uIntPtr nPos = TREELIST_APPEND);
+ SvTreeListEntry* pParent, sal_uLong nPos = TREELIST_APPEND);
/** Insert a redline entry.
@@ -181,7 +181,7 @@ public:
rStr contains the rest of the redline entry; the columns are delimited by '\t'.
*/
SvTreeListEntry* InsertEntry(const Image &rRedlineType, const OUString &rStr, RedlinData *pUserData,
- SvTreeListEntry* pParent, sal_uIntPtr nPos = TREELIST_APPEND);
+ SvTreeListEntry* pParent, sal_uLong nPos = TREELIST_APPEND);
virtual SvTreeListEntry* CreateEntry() const override;