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

loplugin:stringconstant

Change-Id: I09f4dc83cd1408c4286a11a94f592b8e3d2b027c
üst 428e23f4
......@@ -1066,7 +1066,7 @@ static void InterceptLOKStateChangeEvent(const SfxViewFrame* pViewFrame, const c
if (aEvent.IsEnabled && (aEvent.State >>= aPoint))
{
aBuffer.append(OUString::number(aPoint.X) + OUString(" / ") + OUString::number(aPoint.Y));
aBuffer.append(OUString::number(aPoint.X) + " / " + OUString::number(aPoint.Y));
}
}
else if (aEvent.FeatureURL.Path == "StatusBarFunc" ||
......@@ -1076,7 +1076,7 @@ static void InterceptLOKStateChangeEvent(const SfxViewFrame* pViewFrame, const c
if (aEvent.IsEnabled && (aEvent.State >>= aSize))
{
aBuffer.append(OUString::number(aSize.Width) + OUString(" x ") + OUString::number(aSize.Height));
aBuffer.append(OUString::number(aSize.Width) + " x " + OUString::number(aSize.Height));
}
}
else
......
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