diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2018-08-25 15:38:25 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2018-08-25 15:38:25 +0000 |
| commit | 1156e8b3051cfc11eab54b464a4dff190e3696ea (patch) | |
| tree | fa98ec27e7789e355e11b8728a1e418473b3ee0a /fluid/function_panel.cxx | |
| parent | 011e5c498a1f3f197d503bf5ce806e836d667f08 (diff) | |
Beautified some of the code. Removed size calculation error.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@13027 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid/function_panel.cxx')
| -rw-r--r-- | fluid/function_panel.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fluid/function_panel.cxx b/fluid/function_panel.cxx index caeb22470..91d56e234 100644 --- a/fluid/function_panel.cxx +++ b/fluid/function_panel.cxx @@ -483,8 +483,8 @@ Fl_Double_Window* make_data_panel() { data_class_choice->menu(menu_data_class_choice); } // Fl_Choice* data_class_choice { data_mode = new Fl_Check_Button(200, 10, 78, 20, "text mode"); - data_mode->tooltip("When text mode is seleted, the returned type is \"const char[]\" and a traili\ -ng NUL will be appended to the data."); + data_mode->tooltip("When text mode is seleted, the returned type is \"const char*\" and a trailin\ +g NUL will be appended to the data."); data_mode->down_box(FL_DOWN_BOX); data_mode->labelsize(11); } // Fl_Check_Button* data_mode @@ -492,7 +492,7 @@ ng NUL will be appended to the data."); } // Fl_Group* o { data_input = new Fl_Input(10, 52, 320, 20, "Variable Name:"); data_input->tooltip("Inline Data variables are declared \"const unsigned char []\" in binary mode \ -and \"const char[]\" in text mode."); +and \"const char*\" in text mode."); data_input->labelfont(1); data_input->labelsize(11); data_input->textfont(4); |
