[Libreoffice-commits] core.git: desktop/source
Miklos Vajna
vmiklos at collabora.co.uk
Thu Sep 7 10:22:51 UTC 2017
desktop/source/app/cmdlineargs.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 6d6e78c0ec9caebeaee95dabce0cb3b4ab5c3eca
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date: Thu Sep 7 12:21:44 2017 +0200
desktop: fix loplugin:unnecessaryparen warning
Change-Id: I10253c38208da7e5881af7611f80e03059ccc5e5
diff --git a/desktop/source/app/cmdlineargs.cxx b/desktop/source/app/cmdlineargs.cxx
index d13b5c8b1171..f65f2fad9ebb 100644
--- a/desktop/source/app/cmdlineargs.cxx
+++ b/desktop/source/app/cmdlineargs.cxx
@@ -580,8 +580,8 @@ void CommandLineArgs::ParseCommandLine_Impl( Supplier& supplier )
}
else if ( oArg == "outdir" )
{
- if ((eCurrentEvent == CommandLineEvent::Conversion ||
- eCurrentEvent == CommandLineEvent::BatchPrint))
+ if (eCurrentEvent == CommandLineEvent::Conversion ||
+ eCurrentEvent == CommandLineEvent::BatchPrint)
{
if (supplier.next(&aArg))
m_conversionout = aArg;
More information about the Libreoffice-commits
mailing list