Fix for bug 96735: cck.che variables for custom components are confusing

Changing variable names for custom components (r=tao)
This commit is contained in:
shrutiv%netscape.com 2001-10-03 00:01:48 +00:00
Родитель 2ae3a1ceb9
Коммит 98369779bc
5 изменённых файлов: 24 добавлений и 24 удалений

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

@ -28,6 +28,6 @@ ShellBelowTitleText=
ShellInstallTextFile=%Root%Configs\Default\Workspace\Autorun\install.txt ShellInstallTextFile=%Root%Configs\Default\Workspace\Autorun\install.txt
IntSetupBgBitmap=%Root%Configs\Default\Workspace\ISetup\nscplogo.gif IntSetupBgBitmap=%Root%Configs\Default\Workspace\ISetup\nscplogo.gif
Company_Name= Company_Name=
CustomComponent1=Please select an executable to install. CustomComponentPath1=Please select an executable to install.
CustomComponent137=Please select an executable to install. CustomComponentPath2=Please select an executable to install.
NCIFileEditor=notepad NCIFileEditor=notepad

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

@ -28,10 +28,10 @@ ShellBelowTitleText=MyIsp
ShellInstallTextFile=%Root%Configs\MyIsp\Workspace\Autorun\install.txt ShellInstallTextFile=%Root%Configs\MyIsp\Workspace\Autorun\install.txt
IntSetupBgBitmap= IntSetupBgBitmap=
Company_Name= Company_Name=
CustomComponent1=Please select an executable to install. CustomComponentPath1=Please select an executable to install.
CustomComponent137=Please select an executable to install. CustomComponentPath2=Please select an executable to install.
CustomComponent1= CustomComponentSize1=
ComponentSize= CustomComponentSize2=
CustomComponent137= CustomComponentDesc1=
ModuleSize= CustomComponentDesc2=
NCIFileEditor=notepad NCIFileEditor=notepad

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

@ -134,7 +134,7 @@ Height=29
[Widget 5] [Widget 5]
Type=EditBox Type=EditBox
Name=CustomComponent1 Name=CustomComponentPath1
Value= Value=
Start_x=150 Start_x=150
Start_y=97 Start_y=97
@ -150,11 +150,11 @@ Start_y=97
Width=50 Width=50
Height=14 Height=14
onCommand=BrowseFile() onCommand=BrowseFile()
target=CustomComponent1 target=CustomComponentPath1
[Widget 8] [Widget 8]
Type=EditBox Type=EditBox
Name=CustomComponent2 Name=CustomComponentDesc1
Value= Value=
Start_x=150 Start_x=150
Start_y=125 Start_y=125
@ -181,7 +181,7 @@ Height=10
[Widget 868] [Widget 868]
Type=EditBox Type=EditBox
Name=ComponentSize Name=CustomComponentSize1
Value= Value=
Start_x=330 Start_x=330
Start_y=125 Start_y=125
@ -200,7 +200,7 @@ Height=15
[Widget 7] [Widget 7]
Type=EditBox Type=EditBox
Name=CustomComponent137 Name=CustomComponentPath2
Value= Value=
Start_x=150 Start_x=150
Start_y=169 Start_y=169
@ -216,11 +216,11 @@ Start_y=168
Width=50 Width=50
Height=14 Height=14
onCommand=BrowseFile() onCommand=BrowseFile()
target=CustomComponent137 target=CustomComponentPath2
[Widget 843] [Widget 843]
Type=EditBox Type=EditBox
Name=CustomComponent23 Name=CustomComponentDesc2
Value= Value=
Start_x=150 Start_x=150
Start_y=198 Start_y=198
@ -247,7 +247,7 @@ Height=10
[Widget 8686] [Widget 8686]
Type=EditBox Type=EditBox
Name=ModuleSize Name=CustomComponentSize2
Value= Value=
Start_x=330 Start_x=330
Start_y=198 Start_y=198

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

@ -30,8 +30,8 @@ ShellInstallTextFile=%Root%Configs\Default\Workspace\Autorun\install.txt
IntSetupBgBitmap=%Root%Configs\Default\Workspace\ISetup\nscplogo.gif IntSetupBgBitmap=%Root%Configs\Default\Workspace\ISetup\nscplogo.gif
Company_Name= Company_Name=
TechSupportNumber= TechSupportNumber=
CustomComponent1=Please select an executable to install. CustomComponentPath1=Please select an executable to install.
CustomComponent137=Please select an executable to install. CustomComponentPath2=Please select an executable to install.
NCIFileEditor=notepad NCIFileEditor=notepad
FTPportno=0 FTPportno=0
Gopherportno=0 Gopherportno=0

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

@ -884,12 +884,12 @@ void LinuxInvisible()
void AddThirdParty() void AddThirdParty()
{ {
CString tpCompPath1 = GetGlobal("CustomComponent1"); CString tpCompPath1 = GetGlobal("CustomComponentPath1");
CString tpCompPath2 = GetGlobal("CustomComponent137"); CString tpCompPath2 = GetGlobal("CustomComponentPath2");
CString tpComp1 = GetGlobal("CustomComponent2"); CString tpComp1 = GetGlobal("CustomComponentDesc1");
CString tpComp2 = GetGlobal("CustomComponent23"); CString tpComp2 = GetGlobal("CustomComponentDesc2");
CString tpCompSize1 = GetGlobal("ComponentSize"); CString tpCompSize1 = GetGlobal("CustomComponentSize1");
CString tpCompSize2 = GetGlobal("ModuleSize"); CString tpCompSize2 = GetGlobal("CustomComponentSize2");
CString componentName; CString componentName;
CString cName; CString cName;
CString compSDesc = "Description Short="; CString compSDesc = "Description Short=";