diff options
| author | Greg Ercolano <erco@seriss.com> | 2016-07-19 23:19:16 +0000 |
|---|---|---|
| committer | Greg Ercolano <erco@seriss.com> | 2016-07-19 23:19:16 +0000 |
| commit | ec4120795d70e30b77668f85bc77a4a922729580 (patch) | |
| tree | 9083286ee5679591821cfed0dabb847459339d66 /test | |
| parent | b6e466835298723f4754dbb28b2aa24de25fa3ec (diff) | |
Removed ABI guards that snuck in with r11819.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11822 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test')
| -rw-r--r-- | test/unittest_schemes.cxx | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/test/unittest_schemes.cxx b/test/unittest_schemes.cxx index fa85a54dc..8761f64de 100644 --- a/test/unittest_schemes.cxx +++ b/test/unittest_schemes.cxx @@ -176,15 +176,21 @@ public: o->box(FL_DOWN_BOX); o->tooltip("Fl_Output with down box"); } // Fl_Output* o - { Fl_Text_Editor* o = new Fl_Text_Editor(220, 160, 90, 55); + { Fl_Text_Editor* o = new Fl_Text_Editor(180, 160, 125, 55); o->box(FL_DOWN_FRAME); o->color((Fl_Color)80); o->tooltip("Fl_Text_Editor with down frame"); + o->textsize(8); + o->buffer(new Fl_Text_Buffer()); + o->buffer()->text("Text editor"); } // Fl_Text_Editor* o - { Fl_Text_Display* o = new Fl_Text_Display(220, 230, 90, 55); + { Fl_Text_Display* o = new Fl_Text_Display(180, 230, 125, 55); o->box(FL_DOWN_FRAME); o->color((Fl_Color)12); o->tooltip("Fl_Text_Display with down frame"); + o->textsize(8); + o->buffer(new Fl_Text_Buffer()); + o->buffer()->text("Text display"); } // Fl_Text_Display* o { Fl_File_Input* o = new Fl_File_Input(40, 290, 265, 30); o->box(FL_DOWN_BOX); |
