Procházet zdrojové kódy

Merge branch 'is-6' into anchors

# Conflicts:
#	Examples/CodeClasses.iss
Martijn Laan před 6 roky
rodič
revize
23a2a942dc
1 změnil soubory, kde provedl 0 přidání a 15 odebrání
  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 ';