Kaydet (Commit) 442104c5 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

MathType::HandleNodes return value is unused

Change-Id: Ibffcb06e1bfccc4ad604114813b0226395e2d791
üst bfedaea4
...@@ -1950,9 +1950,8 @@ int MathType::ConvertFromStarMath( SfxMedium& rMedium ) ...@@ -1950,9 +1950,8 @@ int MathType::ConvertFromStarMath( SfxMedium& rMedium )
} }
sal_uInt8 MathType::HandleNodes(SmNode *pNode,int nLevel) void MathType::HandleNodes(SmNode *pNode,int nLevel)
{ {
bool bRet=false;
switch(pNode->GetType()) switch(pNode->GetType())
{ {
case NATTRIBUT: case NATTRIBUT:
...@@ -2040,7 +2039,6 @@ sal_uInt8 MathType::HandleNodes(SmNode *pNode,int nLevel) ...@@ -2040,7 +2039,6 @@ sal_uInt8 MathType::HandleNodes(SmNode *pNode,int nLevel)
} }
break; break;
} }
return bRet;
} }
......
...@@ -148,7 +148,7 @@ private: ...@@ -148,7 +148,7 @@ private:
int xfLSPACE(sal_uInt8 nTest) const {return nTest&0x40;} int xfLSPACE(sal_uInt8 nTest) const {return nTest&0x40;}
int xfRULER(sal_uInt8 nTest) const {return nTest&0x20;} int xfRULER(sal_uInt8 nTest) const {return nTest&0x20;}
sal_uInt8 HandleNodes(SmNode *pNode,int nLevel=0); void HandleNodes(SmNode *pNode,int nLevel=0);
int StartTemplate(sal_uInt16 nSelector,sal_uInt16 nVariation=0); int StartTemplate(sal_uInt16 nSelector,sal_uInt16 nVariation=0);
void EndTemplate(int nOldPendingAttributes); void EndTemplate(int nOldPendingAttributes);
void HandleSmMatrix(SmMatrixNode *pMatrix,int nLevel); void HandleSmMatrix(SmMatrixNode *pMatrix,int nLevel);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment