diff options
author | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2008-10-01 15:11:44 +0000 |
---|---|---|
committer | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2008-10-01 15:11:44 +0000 |
commit | 62d36211682ba17dd0d618a4f3aee2e42ca72767 (patch) | |
tree | 30729241fe2c1a67388100b096805e0b015380f5 /examples/gui/command_interface | |
parent | 9bc7fd4fff51fa7f25414cdebe01e8dff75b9617 (diff) | |
download | fpGUI-62d36211682ba17dd0d618a4f3aee2e42ca72767.tar.xz |
* Updated all demos to use the new unit names.
* Updated all packages like ide addons, fpcunit etc to use the new unit names.
Diffstat (limited to 'examples/gui/command_interface')
-rw-r--r-- | examples/gui/command_interface/commands.pas | 6 | ||||
-rw-r--r-- | examples/gui/command_interface/frm_main.pas | 14 | ||||
-rw-r--r-- | examples/gui/command_interface/test.lpi | 5 | ||||
-rw-r--r-- | examples/gui/command_interface/test.lpr | 2 |
4 files changed, 12 insertions, 15 deletions
diff --git a/examples/gui/command_interface/commands.pas b/examples/gui/command_interface/commands.pas index aa948220..c487b0b1 100644 --- a/examples/gui/command_interface/commands.pas +++ b/examples/gui/command_interface/commands.pas @@ -9,8 +9,8 @@ unit commands; interface uses - gfx_command_intf, - gui_memo; + fpg_command_intf, + fpg_memo; type // non reference counted interface @@ -40,7 +40,7 @@ type implementation uses - fpgfx, SysUtils; + fpg_main, SysUtils; { TNullInterfacedObject } diff --git a/examples/gui/command_interface/frm_main.pas b/examples/gui/command_interface/frm_main.pas index 28bb18cf..bc330130 100644 --- a/examples/gui/command_interface/frm_main.pas +++ b/examples/gui/command_interface/frm_main.pas @@ -9,12 +9,12 @@ unit frm_main; interface uses - SysUtils, Classes, gfxbase, fpgfx, gui_edit, - gfx_widget, gui_form, gui_label, gui_button, - gui_listbox, gui_memo, gui_combobox, gui_grid, - gui_dialogs, gui_checkbox, gui_tree, gui_trackbar, - gui_progressbar, gui_radiobutton, gui_tab, gui_menu, - gui_bevel; + SysUtils, Classes, fpg_base, fpg_main, fpg_edit, + fpg_widget, fpg_form, fpg_label, fpg_button, + fpg_listbox, fpg_memo, fpg_combobox, fpg_grid, + fpg_dialogs, fpg_checkbox, fpg_tree, fpg_trackbar, + fpg_progressbar, fpg_radiobutton, fpg_tab, fpg_menu, + fpg_panel; type @@ -37,7 +37,7 @@ type implementation uses - gfx_command_intf, + fpg_command_intf, commands; {@VFD_NEWFORM_IMPL} diff --git a/examples/gui/command_interface/test.lpi b/examples/gui/command_interface/test.lpi index 1d0b0ee8..da19eca5 100644 --- a/examples/gui/command_interface/test.lpi +++ b/examples/gui/command_interface/test.lpi @@ -50,10 +50,7 @@ </Units> </ProjectOptions> <CompilerOptions> - <Version Value="5"/> - <CodeGeneration> - <Generate Value="Faster"/> - </CodeGeneration> + <Version Value="8"/> <Other> <CompilerPath Value="$(CompPath)"/> </Other> diff --git a/examples/gui/command_interface/test.lpr b/examples/gui/command_interface/test.lpr index dcf20851..f1050002 100644 --- a/examples/gui/command_interface/test.lpr +++ b/examples/gui/command_interface/test.lpr @@ -6,7 +6,7 @@ uses {$IFDEF UNIX}{$IFDEF UseCThreads} cthreads, {$ENDIF}{$ENDIF} - Classes, fpgfx, gui_form, frm_main, commands; + Classes, fpg_main, frm_main; procedure MainProc; |