diff options
| author | Matthias Melcher <github@matthiasm.com> | 2023-07-14 23:42:09 +0200 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2023-07-14 23:42:17 +0200 |
| commit | 5d69828ed08c5f3a254a2d5ae9a9ed65decb54a7 (patch) | |
| tree | 92a443a7cffd1b4f49fa101be3432de1361bdd6f /fluid/alignment_panel.h | |
| parent | b2eb664586b8d464e3382101846e4bde250285df (diff) | |
FLUID: fixes all overlapping widgets in all .fl files
Also fixes an issue with multiple use of the same variable
for different types of i18n.
Diffstat (limited to 'fluid/alignment_panel.h')
| -rw-r--r-- | fluid/alignment_panel.h | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/fluid/alignment_panel.h b/fluid/alignment_panel.h index a932b0e44..e2fd64fc5 100644 --- a/fluid/alignment_panel.h +++ b/fluid/alignment_panel.h @@ -83,13 +83,17 @@ extern Fl_Check_Button *shell_use_fl_button; extern Fl_Group *w_settings_i18n_tab; extern void i18n_type_cb(Fl_Choice*, void*); extern Fl_Choice *i18n_type_chooser; -extern Fl_Input *i18n_include_input; -extern Fl_Input *i18n_conditional_input; -extern Fl_Input *i18n_file_input; +extern Fl_Group *i18n_gnu_group; +extern Fl_Input *i18n_gnu_include_input; +extern Fl_Input *i18n_gnu_conditional_input; +extern Fl_Input *i18n_gnu_function_input; +extern Fl_Input *i18n_gnu_static_function_input; +extern Fl_Group *i18n_posix_group; +extern Fl_Input *i18n_pos_include_input; +extern Fl_Input *i18n_pos_conditional_input; +extern Fl_Input *i18n_pos_file_input; #include <FL/Fl_Int_Input.H> -extern Fl_Int_Input *i18n_set_input; -extern Fl_Input *i18n_function_input; -extern Fl_Input *i18n_static_function_input; +extern Fl_Int_Input *i18n_pos_set_input; Fl_Double_Window* make_settings_window(); extern Fl_Menu_Item menu_layout_choice[]; extern Fl_Menu_Item menu_w_layout_menu[]; |
