summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-02-21 21:49:44 +0100
committerJulien Nabet <serval2412@yahoo.fr>2013-02-21 21:50:01 +0100
commitf68cd77923ed996c372e6814d615c6faf635626a (patch)
tree3a84c352c14b3c6902be140bdc8d2e3cb5c56fdc /starmath
parente052f55236e2cdd4ebe6a126b570415b5a1b4ea5 (diff)
Fix type unkown -> unknown
Change-Id: I8d55d5ae5ae38ae2b252859b5400e36301f19ef0
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/toolbox.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/starmath/source/toolbox.cxx b/starmath/source/toolbox.cxx
index 5bcbe2d52a27..75f606526a26 100644
--- a/starmath/source/toolbox.cxx
+++ b/starmath/source/toolbox.cxx
@@ -48,7 +48,7 @@ static sal_uInt16 GetImageListRID( sal_uInt16 nCategoryRID )
case RID_FORMAT_CAT : nRes = RID_IL_FORMAT; break;
case RID_MISC_CAT : nRes = RID_IL_MISC; break;
default :
- OSL_FAIL( "unkown category" );
+ OSL_FAIL( "unknown category" );
}
return nRes;
}
@@ -93,7 +93,7 @@ static sal_uInt16 GetCategoryRID( sal_uInt16 nResId )
if (nResId != RID_IL_CATALOG)
{
#if OSL_DEBUG_LEVEL > 1
- OSL_FAIL( "unkown category" );
+ OSL_FAIL( "unknown category" );
#endif
}
}
@@ -310,7 +310,7 @@ void SmToolBoxWindow::SetCategory(sal_uInt16 nCategoryRID)
pToolBoxCmd->Hide();
sal_Int16 nIdx = GetToolBoxCategoriesIndex( nCategoryRID );
- OSL_ENSURE( nIdx >= 0, "unkown category" );
+ OSL_ENSURE( nIdx >= 0, "unknown category" );
if (nIdx >= 0)
pToolBoxCmd = vToolBoxCategories[nIdx];