mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 20:33:04 +00:00
2003-11-29 Casper S. Hornstrup <chorns@users.sourceforge.net>
* tools/cabman/dfp.cxx (CDFParser::Parse): Allow TokenString. (CDFParser::PerformFileCopy): Use CurrentChar instead of length of CurrentString to find the start of the next token. svn path=/trunk/; revision=6818
This commit is contained in:
parent
977cdc663a
commit
13400788e1
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2003-11-29 Casper S. Hornstrup <chorns@users.sourceforge.net>
|
||||||
|
|
||||||
|
* tools/cabman/dfp.cxx (CDFParser::Parse): Allow TokenString.
|
||||||
|
(CDFParser::PerformFileCopy): Use CurrentChar instead of length of
|
||||||
|
CurrentString to find the start of the next token.
|
||||||
|
|
||||||
2003-11-08 Martin Fuchs <martin-fuchs@gmx.net>
|
2003-11-08 Martin Fuchs <martin-fuchs@gmx.net>
|
||||||
|
|
||||||
* controls/button.c partial fix for for Bug #42:
|
* controls/button.c partial fix for for Bug #42:
|
||||||
|
|
|
@ -314,6 +314,7 @@ unsigned long CDFParser::Parse()
|
||||||
case TokenInteger:
|
case TokenInteger:
|
||||||
sprintf(CurrentString, "%lu", CurrentInteger);
|
sprintf(CurrentString, "%lu", CurrentInteger);
|
||||||
case TokenIdentifier:
|
case TokenIdentifier:
|
||||||
|
case TokenString:
|
||||||
if (Command) {
|
if (Command) {
|
||||||
/* Command */
|
/* Command */
|
||||||
Status = PerformCommand();
|
Status = PerformCommand();
|
||||||
|
@ -1003,7 +1004,7 @@ unsigned long CDFParser::PerformFileCopy()
|
||||||
strcpy(SrcName, "");
|
strcpy(SrcName, "");
|
||||||
strcpy(DstName, "");
|
strcpy(DstName, "");
|
||||||
|
|
||||||
i = strlen(CurrentString);
|
i = CurrentChar;
|
||||||
while ((i < LineLength) &&
|
while ((i < LineLength) &&
|
||||||
((ch = Line[i]) != ' ') &&
|
((ch = Line[i]) != ' ') &&
|
||||||
(ch != 0x09) &&
|
(ch != 0x09) &&
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue