mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-10-31 06:21:38 +01:00 
			
		
		
		
	LCL: TApplication: replaced TList with TFPList
git-svn-id: trunk@24413 -
This commit is contained in:
		
							parent
							
								
									8e09f3c8dd
								
							
						
					
					
						commit
						3166de2bc2
					
				
							
								
								
									
										10
									
								
								lcl/forms.pp
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								lcl/forms.pp
									
									
									
									
									
								
							| @ -893,14 +893,14 @@ type | ||||
|     FActiveForm: TForm; | ||||
|     FCursor: TCursor; | ||||
|     FCursorMap: TMap; | ||||
|     FCustomForms: TList; | ||||
|     FCustomFormsZOrdered: TList; | ||||
|     FCustomForms: TFPList; | ||||
|     FCustomFormsZOrdered: TFPList; | ||||
|     FDefaultCursor: HCURSOR; | ||||
|     FHintFont: TFont; | ||||
|     FFocusedForm: TCustomForm; | ||||
|     FFonts : TStrings; | ||||
|     FFormList: TList; | ||||
|     FDataModuleList: TList; | ||||
|     FFormList: TFPList; | ||||
|     FDataModuleList: TFPList; | ||||
|     FIconFont: TFont; | ||||
|     FMenuFont: TFont; | ||||
|     FScreenHandlers: array[TScreenNotification] of TMethodList; | ||||
| @ -910,7 +910,7 @@ type | ||||
|     FOnActiveControlChange: TNotifyEvent; | ||||
|     FOnActiveFormChange: TNotifyEvent; | ||||
|     FPixelsPerInch : integer; | ||||
|     FSaveFocusedList: TList; | ||||
|     FSaveFocusedList: TFPList; | ||||
|     FSystemFont: TFont; | ||||
|     procedure DeleteCursor(AIndex: Integer); | ||||
|     procedure DestroyCursors; | ||||
|  | ||||
| @ -71,12 +71,12 @@ begin | ||||
|   FCursorMap := TMap.Create(its4, SizeOf(HCursor)); | ||||
|   FMonitors := TMonitorList.Create; | ||||
|   TStringlist(FFonts).Sorted := True; | ||||
|   FCustomForms := TList.Create; | ||||
|   FCustomFormsZOrdered := TList.Create; | ||||
|   FFormList := TList.Create; | ||||
|   FDataModuleList := TList.Create; | ||||
|   FCustomForms := TFPList.Create; | ||||
|   FCustomFormsZOrdered := TFPList.Create; | ||||
|   FFormList := TFPList.Create; | ||||
|   FDataModuleList := TFPList.Create; | ||||
|   FPixelsPerInch := ScreenInfo.PixelsPerInchX; | ||||
|   FSaveFocusedList := TList.Create; | ||||
|   FSaveFocusedList := TFPList.Create; | ||||
| 
 | ||||
|   AddDataModule := @DoAddDataModule; | ||||
|   RemoveDataModule := @DoRemoveDataModule; | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 mattias
						mattias