Kaydet (Commit) b572cb94 authored tarafından Takeshi Abe's avatar Takeshi Abe

mark them as static

Change-Id: I7c62cce3708e52ca9af1731f453bbe8410b6f771
üst e695f645
...@@ -2960,8 +2960,8 @@ void SmSpecialNode::Prepare(const SmFormat &rFormat, const SmDocShell &rDocShell ...@@ -2960,8 +2960,8 @@ void SmSpecialNode::Prepare(const SmFormat &rFormat, const SmDocShell &rDocShell
const OUString& rTmp(GetText()); const OUString& rTmp(GetText());
if (rTmp.isEmpty()) if (rTmp.isEmpty())
{ {
const sal_Unicode cUppercaseAlpha = 0x0391; static const sal_Unicode cUppercaseAlpha = 0x0391;
const sal_Unicode cUppercaseOmega = 0x03A9; static const sal_Unicode cUppercaseOmega = 0x03A9;
sal_Unicode cChar = rTmp[0]; sal_Unicode cChar = rTmp[0];
// uppercase letters should be straight and lowercase letters italic // uppercase letters should be straight and lowercase letters italic
bItalic = !(cUppercaseAlpha <= cChar && cChar <= cUppercaseOmega); bItalic = !(cUppercaseAlpha <= cChar && cChar <= cUppercaseOmega);
......
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