summaryrefslogtreecommitdiff
path: root/starmath/inc/node.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-01-14 13:13:47 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-01-14 13:13:47 +0000
commitcfe507362099d7cb1b8ad50191ba8ef1dd38c421 (patch)
treee41bfb59939e14a6d5f29d04c05bfef0d691e612 /starmath/inc/node.hxx
parentd88cf2961d256ee0f4bbfda849d6a5a645332b40 (diff)
WaE: C4244 conversion from int to USHORT
Diffstat (limited to 'starmath/inc/node.hxx')
-rw-r--r--starmath/inc/node.hxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/starmath/inc/node.hxx b/starmath/inc/node.hxx
index e575e50194e4..cb039837febf 100644
--- a/starmath/inc/node.hxx
+++ b/starmath/inc/node.hxx
@@ -355,13 +355,15 @@ public:
virtual void GetAccessibleText( String &rText ) const;
- void SetSubNode(USHORT nIndex, SmNode* pNode){
- int size = aSubNodes.size();
- if(size <= nIndex){
+ void SetSubNode(size_t nIndex, SmNode* pNode)
+ {
+ size_t size = aSubNodes.size();
+ if (size <= nIndex)
+ {
//Resize subnodes array
aSubNodes.resize(nIndex + 1);
//Set new slots to NULL
- for(int i = size; i < nIndex+1; i++)
+ for (size_t i = size; i < nIndex+1; i++)
aSubNodes[i] = NULL;
}
aSubNodes[nIndex] = pNode;