[go: up one dir, main page]

Menu

Commit [r506]  Maximize  Restore  History

ScriptBase.cpp

Bug 799851: Fixed Script line numbers off by one in VTS messages
ScriptBase.cpp has a class member named scanLine. That member is file local;
there are no references to it outside this file. It was being initialized to
-1 in ScriptBase::Initialize(). I changed it to initialize to 0 in
ScriptBase::Initialize(), and I moved the location of where scanLine += 1;
executes, so that other data structures which are indexed by scanLine are
unaffected. They formerly executed after scanLine += 1; which had started at
-1, now they execute before scanLine += 1; but scanLine starts at 0.

VTS.cpp
Commented above change.

VTS.dsp
Indentation changed in section
# Begin Custom Build
OutDir=.\Release
InputPath=.\NBLink\nb_link_settings.dll

"$(OutDir)\nb_link_settings.dll" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
copy $(InputPath)
$(OutDir)\
I don't know why.

duffy399 2004-11-17

changed /trunk/VTS3/ScriptBase.cpp
changed /trunk/VTS3/VTS.cpp
changed /trunk/VTS3/VTS.dsp