Small cleanup

This commit is contained in:
Ingo Weinhold
2011-07-17 16:54:41 +02:00
parent 2ae9a147ca
commit ba1bc0a4ff
+3 -3
View File
@@ -448,10 +448,10 @@ BPackageInfo::Parser::_ParseStringList(BObjectList<BString>* value,
BObjectList<BString>* value;
bool allowQuotedStrings;
StringParser(BObjectList<BString>* value_, bool allowQuotedStrings_)
StringParser(BObjectList<BString>* value, bool allowQuotedStrings)
:
value(value_),
allowQuotedStrings(allowQuotedStrings_)
value(value),
allowQuotedStrings(allowQuotedStrings)
{
}