diff options
| author | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2009-12-27 17:28:00 +0100 |
|---|---|---|
| committer | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2009-12-27 17:28:00 +0100 |
| commit | ff6b0244b39ccdb30a499038382d2676d9c278be (patch) | |
| tree | a966c4e951b61310e47f15ff85b3e80b5e5bc16e /UMain.pas | |
| parent | 2e39205afb249626b24b1af2251297ff039a60ca (diff) | |
| download | tuxcmd-ff6b0244b39ccdb30a499038382d2676d9c278be.tar.xz | |
Kylix fixes, cleanup
Diffstat (limited to 'UMain.pas')
| -rw-r--r-- | UMain.pas | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1759,7 +1759,6 @@ var ListView: TGTKListView; end; procedure DoThread; - var DialogParent: PGtkWidget; begin try OpenDirThread.AEngine := Engine; @@ -3189,7 +3188,7 @@ var LeftPanel, HasInitialCRC: boolean; AListView: TGTKListView; Engine: TPanelEngine; FilePath, s, TargetName: string; - TargetCRC: LongWord; + TargetCRC: Cardinal; TargetSize: Int64; AWorkingThread: TWorkerThread; begin @@ -4901,7 +4900,7 @@ procedure TFMain.FillMounterBar; {$IFDEF CPU64} Button.Tag := QWORD(MounterList[i]); {$ELSE} - Button.Tag := Longint(MounterList[i]); + Button.Tag := Cardinal(MounterList[i]); {$ENDIF} Button.Tooltip := Format(LANGMountPointDevice, [StrToUTF8(MountPath), StrToUTF8(Device)]); Button.BorderStyle := bsNone; |
