[Meta-diff-devel] InstallerScripts metadiff.iss,1.1,1.2
Brought to you by:
undees
From: Sebastian S. <ey...@us...> - 2005-07-30 14:06:05
|
Update of /cvsroot/meta-diff/InstallerScripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv649/InstallerScripts Modified Files: metadiff.iss Log Message: Fixed typos. Index: metadiff.iss =================================================================== RCS file: /cvsroot/meta-diff/InstallerScripts/metadiff.iss,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** metadiff.iss 30 Jul 2005 13:53:28 -0000 1.1 --- metadiff.iss 30 Jul 2005 14:05:56 -0000 1.2 *************** *** 5,9 **** procedure InitializeWizard; begin ! // Use a monospaced font in the license dialog. //WizardForm.LicenseMemo.Font.Name:='Courier New'; //WizardForm.LicenseMemo.Font.Size:=8; --- 5,9 ---- procedure InitializeWizard; begin ! // Use a mono spaced font in the license dialog. //WizardForm.LicenseMemo.Font.Name:='Courier New'; //WizardForm.LicenseMemo.Font.Size:=8; *************** *** 18,22 **** ProgramPage.Add( ! 'Program to use for directory comparisions:', 'Executable files (*.exe)|*.exe|All files (*.*)|*.*', '*.exe' --- 18,22 ---- ProgramPage.Add( ! 'Program to use for directory comparisons:', 'Executable files (*.exe)|*.exe|All files (*.*)|*.*', '*.exe' *************** *** 24,28 **** ProgramPage.Add( ! 'Program to use for file comparisions:', 'Executable files (*.exe)|*.exe|All files (*.*)|*.*', '*.exe' --- 24,28 ---- ProgramPage.Add( ! 'Program to use for file comparisons:', 'Executable files (*.exe)|*.exe|All files (*.*)|*.*', '*.exe' *************** *** 34,42 **** ConfigFile,DirProgram,FileProgram,lvdiff:string; begin ! if CurStep<>ssDone then Exit; ConfigFile:=ExpandConstant('{app}\.metadiff'); ! // Add the programs to the config file. DirProgram:=RemoveQuotes(Trim(ProgramPage.Values[0])); if Length(DirProgram)>0 then begin --- 34,43 ---- ConfigFile,DirProgram,FileProgram,lvdiff:string; begin ! if CurStep<>ssDone then ! Exit; ConfigFile:=ExpandConstant('{app}\.metadiff'); ! // Add the programs to the configuration file. DirProgram:=RemoveQuotes(Trim(ProgramPage.Values[0])); if Length(DirProgram)>0 then begin *************** *** 123,127 **** [UninstallRun] ! Filename: {sys}\RunDLL32.exe; Parameters: {app}\CompareShellEx.dll,Uninstall; Components: cse; Flags: runhidden [Messages] --- 124,128 ---- [UninstallRun] ! Filename: {sys}\RunDLL32.exe; Parameters: {app}\CompareShellEx.dll,Uninstall; Components: cse; Flags: runhidden [Messages] |