IDE: added general status to widgetset display names

git-svn-id: trunk@14140 -
This commit is contained in:
mattias 2008-02-15 15:29:22 +00:00
parent 8d1b4060a1
commit a1f054d578

View File

@ -53,10 +53,24 @@ type
const
LCLPlatformDirNames: array[TLCLPlatform] of string = (
'gtk', 'gtk2', 'win32', 'wince', 'carbon', 'qt', 'fpgui', 'nogui'
'gtk',
'gtk2',
'win32',
'wince',
'carbon',
'qt',
'fpgui',
'nogui'
);
LCLPlatformDisplayNames: array[TLCLPlatform] of string = (
'gtk', 'gtk 2', 'win32/win64', 'wince', 'carbon', 'qt', 'fpGUI', 'NoGUI'
'gtk',
'gtk 2 (beta)',
'win32/win64',
'wince (beta)',
'carbon (alpha)',
'qt (alpha)',
'fpGUI (pre-alpha)',
'NoGUI (pre-alpha)'
);