- Timestamp:
- Dec 27, 2017, 7:41:26 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChronOS.lpi
r12 r14 14 14 <EnableI18N LFM="False"/> 15 15 </i18n> 16 <VersionInfo>17 <StringTable ProductVersion=""/>18 </VersionInfo>19 16 <BuildModes Count="2"> 20 17 <Item1 Name="Debug" Default="True"/> -
trunk/Forms/UFormMain.lfm
r13 r14 5 5 Width = 932 6 6 Caption = 'Screen 1 - ChronOS' 7 ClientHeight = 6 627 ClientHeight = 656 8 8 ClientWidth = 932 9 9 Menu = MainMenu1 10 OnClose = FormClose 10 11 OnCreate = FormCreate 11 12 OnDestroy = FormDestroy 12 13 OnKeyDown = FormKeyDown 13 14 OnShow = FormShow 14 LCLVersion = '1. 6.4.0'15 LCLVersion = '1.8.0.4' 15 16 object PaintBox1: TPaintBox 16 17 Left = 0 17 Height = 6 6218 Height = 656 18 19 Top = 0 19 20 Width = 932 -
trunk/Forms/UFormMain.pas
r13 r14 29 29 procedure AFullscreenExecute(Sender: TObject); 30 30 procedure AShowTerminalExecute(Sender: TObject); 31 procedure FormClose(Sender: TObject; var CloseAction: TCloseAction); 31 32 procedure FormCreate(Sender: TObject); 32 33 procedure FormDestroy(Sender: TObject); … … 124 125 end; 125 126 127 procedure TFormMain.FormClose(Sender: TObject; var CloseAction: TCloseAction); 128 begin 129 Kernel.Terminate; 130 end; 131 126 132 procedure TFormMain.SwitchFullScreen; 127 133 begin -
trunk/Platform/Base/UPlatformBase.pas
r13 r14 263 263 begin 264 264 inherited Stop; 265 for I := 0 to Tasks.Count - 1 do 265 for I := 0 to Tasks.Count - 1 do begin 266 266 TBaseTask(Tasks[I]).Terminated := True; 267 TBaseTask(Tasks[I]).Thread.WaitFor; 268 end; 267 269 end; 268 270
Note:
See TracChangeset
for help on using the changeset viewer.