summaryrefslogtreecommitdiff
path: root/include/svtools
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2013-12-05 18:30:37 +0100
committerJan Holesovsky <kendy@collabora.com>2013-12-06 07:18:51 +0100
commit4ec8c63b5d41ca9ad7dd9ed10dda6b40927d859c (patch)
treeb0d653c58fed6c8f0035a56ebb7ac0abab9e95be /include/svtools
parent5e01904de993caa3d497a8f6c82a846336e70eef (diff)
I guess const was what was wanted here.
Change-Id: I5789b18f47d954761a06ccdc4568bc1f74258089
Diffstat (limited to 'include/svtools')
-rw-r--r--include/svtools/treelistentry.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svtools/treelistentry.hxx b/include/svtools/treelistentry.hxx
index 812fd058b7da..4d651abeb516 100644
--- a/include/svtools/treelistentry.hxx
+++ b/include/svtools/treelistentry.hxx
@@ -63,7 +63,7 @@ private:
void InvalidateChildrensListPositions();
public:
- static size_t ITEM_NOT_FOUND;
+ const size_t ITEM_NOT_FOUND = std::numeric_limits<size_t>::max();
SvTreeListEntry();
SvTreeListEntry(const SvTreeListEntry& r);