From ec4120795d70e30b77668f85bc77a4a922729580 Mon Sep 17 00:00:00 2001 From: Greg Ercolano Date: Tue, 19 Jul 2016 23:19:16 +0000 Subject: 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 --- test/unittest_schemes.cxx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'test') 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); -- cgit v1.2.3