Removes unreferenced variable

This commit is contained in:
Michael Jones 2013-08-22 14:21:11 -05:00
parent 81f56ebf5b
commit ed6af55c82
1 changed files with 1 additions and 2 deletions

View File

@ -548,7 +548,7 @@ void QxtCommandOptionsPrivate::parse(const QStringList& params)
int ct = params.count();
int skip = 0;
bool endFlags = false;
bool notUnrecognized, hasEquals;
bool hasEquals;
QString name, param, value;
while (pos < ct)
@ -574,7 +574,6 @@ void QxtCommandOptionsPrivate::parse(const QStringList& params)
positional.append(param);
continue;
}
notUnrecognized = false;
if (flagStyle != QxtCommandOptions::Slash && param == "--")
{