new loplugin: oncevar

Change-Id: If57390510dde4d166be3141b9f658a7453755d3f
Reviewed-on: https://gerrit.libreoffice.org/19815
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
This commit is contained in:
Noel Grandin
2015-11-06 09:23:33 +02:00
committed by Noel Grandin
parent e1fc599eb7
commit 6c80a8fe89
97 changed files with 390 additions and 515 deletions

View File

@@ -140,10 +140,9 @@ static bool readOption( OUString * pValue, const sal_Char * pOpt,
static bool readOption( bool * pbOpt, const sal_Char * pOpt,
sal_uInt32 * pnIndex, const OUString & aArg)
{
const OUString dashdash("--");
OUString aOpt = OUString::createFromAscii(pOpt);
if(aArg.startsWith(dashdash) && aOpt.equals(aArg.copy(2)))
if(aArg.startsWith("--") && aOpt.equals(aArg.copy(2)))
{
++(*pnIndex);
*pbOpt = true;
@@ -408,8 +407,7 @@ SAL_IMPLEMENT_MAIN()
rtl_getAppCommandArg(nPos, &arg.pData);
const OUString dashdash("--");
if (dashdash == arg)
if (arg == "--")
{
++nPos;
break;