Kaydet (Commit) b5d6f6f2 authored tarafından Caolán McNamara's avatar Caolán McNamara

can be const

Change-Id: Ib1149389ae332c66886611de244baa2d83af8869
üst d104ae71
...@@ -591,7 +591,7 @@ void OutputDevice::ImplDrawStrikeoutChar( long nBaseX, long nBaseY, ...@@ -591,7 +591,7 @@ void OutputDevice::ImplDrawStrikeoutChar( long nBaseX, long nBaseY,
return; return;
// prepare string for strikeout measurement // prepare string for strikeout measurement
char cStrikeoutChar = eStrikeout == STRIKEOUT_SLASH ? '/' : 'X'; const char cStrikeoutChar = eStrikeout == STRIKEOUT_SLASH ? '/' : 'X';
static const int nTestStrLen = 4; static const int nTestStrLen = 4;
static const int nMaxStrikeStrLen = 2048; static const int nMaxStrikeStrLen = 2048;
sal_Unicode aChars[nMaxStrikeStrLen+1]; // +1 for valgrind... sal_Unicode aChars[nMaxStrikeStrLen+1]; // +1 for valgrind...
......
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