This commit is contained in:
peterv%netscape.com 2003-01-22 04:00:19 +00:00
Родитель b4f31cb711
Коммит ce289daaeb
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -148,7 +148,7 @@ public:
private:
txStack* mStack;
PRUint32 mPosition;
PRInt32 mPosition;
};
#endif /* txStack_h___ */

Просмотреть файл

@ -94,7 +94,7 @@ void parseCommandLine(int argc, char** argv, txOptions& aOptions)
if (*argv[i] == '-' && arg.Length() > 1) {
// clean up previous flag
if (!flag.IsEmpty()) {
txOptionEntry* option = aOptions.AddEntry(flag);
aOptions.AddEntry(flag);
flag.Truncate();
}
@ -111,7 +111,7 @@ void parseCommandLine(int argc, char** argv, txOptions& aOptions)
}
if (!flag.IsEmpty()) {
txOptionEntry* option = aOptions.AddEntry(flag);
aOptions.AddEntry(flag);
}
}