From e2e76df7e48fb77f1e802f57c7d9a22eb8c74c5a Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 9 Feb 2017 11:29:05 +0200 Subject: create strong_int template and use it in tools::UniqueIndex an experiment to see how useful a strong_int template works out Change-Id: Ib77700350f0fa3b018a1926233adf7a40d728d16 Reviewed-on: https://gerrit.libreoffice.org/34072 Tested-by: Jenkins Reviewed-by: Noel Grandin --- rsc/source/res/rscclobj.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rsc/source/res') diff --git a/rsc/source/res/rscclobj.cxx b/rsc/source/res/rscclobj.cxx index 80969f704553..29184286cd8d 100644 --- a/rsc/source/res/rscclobj.cxx +++ b/rsc/source/res/rscclobj.cxx @@ -56,14 +56,14 @@ ObjNode * RefNode::GetObjNode( const RscId & rRscId ) return nullptr; } -ObjNode::ObjNode( const RscId & rId, CLASS_DATA pData, sal_uLong lKey ) +ObjNode::ObjNode( const RscId & rId, CLASS_DATA pData, RscFileTab::Index lKey ) : aRscId(rId) , pRscObj(pData) , lFileKey(lKey) { } -ObjNode * ObjNode::DelObjNode( RscTop * pClass, sal_uLong nFileKey ) +ObjNode * ObjNode::DelObjNode( RscTop * pClass, RscFileTab::Index nFileKey ) { ObjNode * pRetNode = this; -- cgit