summaryrefslogtreecommitdiff
path: root/formula/inc
diff options
context:
space:
mode:
authorCarsten Driesner <cd@openoffice.org>2011-01-21 13:06:20 +0100
committerCarsten Driesner <cd@openoffice.org>2011-01-21 13:06:20 +0100
commit27681d609137cc1c8b8957ada9b2b54061311cec (patch)
tree5ba638ac64185b48565ed5b13903d26b0bbd3d92 /formula/inc
parent7be5d3d1c15e3476c0ec50a644f3852c0db1e579 (diff)
removetooltypes01: #i112600# Fix build problems on non-pro
Diffstat (limited to 'formula/inc')
-rw-r--r--formula/inc/formula/FormulaCompiler.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/formula/inc/formula/FormulaCompiler.hxx b/formula/inc/formula/FormulaCompiler.hxx
index 3f24af7bb9be..75e163061ebe 100644
--- a/formula/inc/formula/FormulaCompiler.hxx
+++ b/formula/inc/formula/FormulaCompiler.hxx
@@ -135,7 +135,7 @@ public:
/// Get the symbol string matching an OpCode.
inline const String& getSymbol( const OpCode eOp ) const
{
- DBG_ASSERT( USHORT(eOp) < mnSymbols, "OpCodeMap::getSymbol: OpCode out of range");
+ DBG_ASSERT( sal_uInt16(eOp) < mnSymbols, "OpCodeMap::getSymbol: OpCode out of range");
if (sal_uInt16(eOp) < mnSymbols)
return mpTable[ eOp ];
static String s_sEmpty;