summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-10-02 14:08:44 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-10-02 14:49:08 +0100
commit154cc4ab52f4fd364889b6333338f5dd880352e2 (patch)
tree56f629d86924c42cffadd190334e32c2796abe93
parent67693ad0d41c5e421045b2ff5f66ce936e05c583 (diff)
coverity#1242506 silence Arguments in wrong order
order doesn't matter one bit as far as I can see Change-Id: I55aa5d23d9865a47ef4dcda9d3e19863794a18c9
-rw-r--r--sc/source/ui/view/formatsh.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/view/formatsh.cxx b/sc/source/ui/view/formatsh.cxx
index a2159a2856ec..bbf1c38398b7 100644
--- a/sc/source/ui/view/formatsh.cxx
+++ b/sc/source/ui/view/formatsh.cxx
@@ -883,7 +883,7 @@ void ScFormatShell::ExecuteStyle( SfxRequest& rReq )
SfxItemSet& rNewSet = pStyleSheet->GetItemSet();
bool bNumFormatChanged;
if ( ScGlobal::CheckWidthInvalidate(
- bNumFormatChanged, aOldSet, rNewSet ) )
+ bNumFormatChanged, rNewSet, aOldSet ) )
rDoc.InvalidateTextWidth( NULL, NULL, bNumFormatChanged );
SCTAB nTabCount = rDoc.GetTableCount();