소스 검색

Merge branch 'is-6' into anchors

# Conflicts:
#	Examples/CodeClasses.iss
Martijn Laan 6 년 전
부모
커밋
23a2a942dc
1개의 변경된 파일0개의 추가작업 그리고 15개의 파일을 삭제
  1. 0 15
      Examples/CodeClasses.iss

+ 0 - 15
Examples/CodeClasses.iss

@@ -9,7 +9,6 @@ CreateAppDir=no
 DisableProgramGroupPage=yes
 DefaultGroupName=My Program
 UninstallDisplayIcon={app}\MyProg.exe
-WindowVisible=yes
 WizardResizable=yes
 OutputDir=userdocs:Inno Setup Examples Output
 PrivilegesRequired=lowest
@@ -398,20 +397,6 @@ begin
 
   CreateAboutButtonAndURLLabel(WizardForm, WizardForm.CancelButton);
 
-  BackgroundBitmapImage := TBitmapImage.Create(MainForm);
-  BackgroundBitmapImage.Left := 50;
-  BackgroundBitmapImage.Top := 90;
-  BackgroundBitmapImage.AutoSize := True;
-  BackgroundBitmapImage.Bitmap := WizardForm.WizardBitmapImage.Bitmap;
-  BackgroundBitmapImage.Parent := MainForm;
-  
-  BackgroundBitmapText := TNewStaticText.Create(MainForm);
-  BackgroundBitmapText.Left := BackgroundBitmapImage.Left;
-  BackgroundBitmapText.Top := BackgroundBitmapImage.Top + BackgroundBitmapImage.Height + ScaleY(8);
-  BackgroundBitmapText.Caption := 'TBitmapImage';
-  BackgroundBitmapText.Font.Color := clWhite;
-  BackgroundBitmapText.Parent := MainForm;
-
   { Custom beveled label }
 
   WizardForm.BeveledLabel.Caption := ' Bevel ';