mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 01:19:35 +02:00
22 lines
453 B
ObjectPascal
22 lines
453 B
ObjectPascal
unit bug0270;
|
|
|
|
{$mode tp}
|
|
|
|
interface
|
|
|
|
const
|
|
s='df';
|
|
|
|
{$IFDEF VDE}
|
|
SFilterOpen = ' (*.nnn)|*.nnn' + '|' + 'Alle Files (*.*)|*.*';
|
|
SFilterSave = ' (*.nnn)|*.nnn';
|
|
SFilterOpen2 = ' (*.vvv)|*.vvv' + '|' + 'All Files (*.*)|*.*';
|
|
SFilterSave2 = ' (*.vvv)|*.vvv';
|
|
SFilterOpen3 = ' (*.eee)|*.eee' + '|' + 'All Files (*.*)|*.*';
|
|
SFilterSave3 = ' (*.eee)|*.eee';
|
|
{$ENDIF}
|
|
|
|
implementation
|
|
|
|
end.
|