diff options
| author | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2008-10-25 17:41:13 +0200 |
|---|---|---|
| committer | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2008-10-25 17:41:13 +0200 |
| commit | 045f38ef8313cd3038b7b748db1dbe4ebba4a581 (patch) | |
| tree | b6c682ef2241aa68d9fb0c859a84fc4f24d7bc75 /UFileAssoc.pas | |
| parent | 03e95ee05bda9778d8b572fea7c48450d602fa70 (diff) | |
| download | tuxcmd-045f38ef8313cd3038b7b748db1dbe4ebba4a581.tar.xz | |
Kylix compatibility and cleanup
Diffstat (limited to 'UFileAssoc.pas')
| -rw-r--r-- | UFileAssoc.pas | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/UFileAssoc.pas b/UFileAssoc.pas index f08c1ed..0d4f6ef 100644 --- a/UFileAssoc.pas +++ b/UFileAssoc.pas @@ -24,19 +24,21 @@ interface uses Classes, SysUtils, StrUtils, GTKPixbuf, GTKClasses, GTKUtils, UEngines, UVFSCore, UCoreUtils; type TAssocAction = class - ActionName, ActionCommand: string; - AutodetectGUI, RunInTerminal: boolean; - constructor Create; + public + ActionName, ActionCommand: string; + AutodetectGUI, RunInTerminal: boolean; + constructor Create; end; TFileAssoc = class - Extensions: TOpenStringArray; - FileTypeName, FileTypeIcon, ColorString: string; - DefaultAction: integer; - ActionList: TList; - Pixmap, LnkPixmap: TGDKPixbuf; - constructor Create; - destructor Destroy; override; + public + Extensions: TOpenStringArray; + FileTypeName, FileTypeIcon, ColorString: string; + DefaultAction: integer; + ActionList: TList; + Pixmap, LnkPixmap: TGDKPixbuf; + constructor Create; + destructor Destroy; override; end; const ConstFTAMetaDirectory = '<directory>'; |
