summaryrefslogtreecommitdiff
path: root/sw/source/uibase/app
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-02-22 16:04:08 +0200
committerAshod Nakashian <ashod.nakashian@collabora.co.uk>2016-07-20 01:26:00 -0400
commit8c7a237d0db3a279ac39e8b2697b2a50ac46db00 (patch)
tree0f8431f31bede6fe93fc601e7dc92461d426d0a6 /sw/source/uibase/app
parentec6f6688db6bd9fd8f29fb5ffa19e561fac0afc0 (diff)
loplugin:commaoperator in sw/
Change-Id: I9b00755707687e4c10c02bf49866571f2c44d8ba (cherry picked from commit c17ead7dc9c9dce23033fdda9c316f27a0225b17)
Diffstat (limited to 'sw/source/uibase/app')
-rw-r--r--sw/source/uibase/app/mainwn.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/sw/source/uibase/app/mainwn.cxx b/sw/source/uibase/app/mainwn.cxx
index 4e4c32bbb36c..f842fb4ba368 100644
--- a/sw/source/uibase/app/mainwn.cxx
+++ b/sw/source/uibase/app/mainwn.cxx
@@ -112,7 +112,10 @@ void EndProgress( SwDocShell *pDocShell )
//#112337# it may happen that the container has been removed
//while rescheduling
if ( pProgressContainer && pProgressContainer->empty() )
- delete pProgressContainer, pProgressContainer = nullptr;
+ {
+ delete pProgressContainer;
+ pProgressContainer = nullptr;
+ }
}
}
}