diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2015-04-02 14:08:18 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2015-04-02 14:08:18 +0000 |
| commit | 552502d44afeb7214fefe0266bd9abe3d503f47e (patch) | |
| tree | 09a8e39764d7df5fff3d61dbebcc7ab31cd680d4 /fluid/function_panel.h | |
| parent | 61a7bf60f92c59092728fdbe6e9a08572a687ac5 (diff) | |
Fixed the Tab order in Fluid dialogs that contain a comment field. The comment field can no longer have tabs in it anymore (hey, it's either that or the other, right?). But I believe that this is a limitation that the user can easily live with. It's just comments, not code.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10658 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid/function_panel.h')
| -rw-r--r-- | fluid/function_panel.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fluid/function_panel.h b/fluid/function_panel.h index e81411e39..86087385a 100644 --- a/fluid/function_panel.h +++ b/fluid/function_panel.h @@ -33,12 +33,12 @@ extern Fl_Light_Button *f_c_button; #include <FL/Fl_Input.H> extern Fl_Input *f_name_input; extern Fl_Input *f_return_type_input; +#include <FL/Fl_Text_Editor.H> +extern Fl_Text_Editor *f_comment_input; #include <FL/Fl_Return_Button.H> extern Fl_Return_Button *f_panel_ok; #include <FL/Fl_Button.H> extern Fl_Button *f_panel_cancel; -#include <FL/Fl_Text_Editor.H> -extern Fl_Text_Editor *f_comment_input; Fl_Double_Window* make_function_panel(); extern Fl_Menu_Item menu_f_public_member_choice[]; extern Fl_Menu_Item menu_f_public_choice[]; @@ -67,9 +67,9 @@ extern Fl_Double_Window *decl_panel; extern Fl_Choice *decl_choice; extern Fl_Choice *decl_class_choice; extern Fl_Input *decl_input; +extern Fl_Text_Editor *decl_comment_input; extern Fl_Return_Button *decl_panel_ok; extern Fl_Button *decl_panel_cancel; -extern Fl_Text_Editor *decl_comment_input; Fl_Double_Window* make_decl_panel(); extern Fl_Menu_Item menu_decl_choice[]; extern Fl_Menu_Item menu_decl_class_choice[]; @@ -79,9 +79,9 @@ extern Fl_Choice *data_class_choice; extern Fl_Input *data_input; extern Fl_Input *data_filename; extern Fl_Button *data_filebrowser; +extern Fl_Text_Editor *data_comment_input; extern Fl_Return_Button *data_panel_ok; extern Fl_Button *data_panel_cancel; -extern Fl_Text_Editor *data_comment_input; Fl_Double_Window* make_data_panel(); extern Fl_Menu_Item menu_data_choice[]; extern Fl_Menu_Item menu_data_class_choice[]; |
