From 8ef6520fe3dcae4372b816a49b11024736a0217d Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Sat, 27 Sep 2014 00:07:27 +0000 Subject: [PATCH] Fix indentation in recently added test/twowin.cxx demo. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10341 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- test/twowin.cxx | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/test/twowin.cxx b/test/twowin.cxx index 4419fb569..fb97cc124 100644 --- a/test/twowin.cxx +++ b/test/twowin.cxx @@ -24,35 +24,35 @@ static Fl_Input *b1, *b2; static void cb1(Fl_Widget *, void *) { - b2->take_focus(); + b2->take_focus(); } static void cb2(Fl_Widget *, void *) { - b1->take_focus(); + b1->take_focus(); } int main() { - Fl_Double_Window *win1 = new Fl_Double_Window(200, 200); - Fl_Button *bb1 = new Fl_Button(10, 10, 100, 100, "b1"); - bb1->callback(cb1); - b1 = new Fl_Input(10, 150, 100, 25); - win1->label("win1"); - win1->end(); + Fl_Double_Window *win1 = new Fl_Double_Window(200, 200); + Fl_Button *bb1 = new Fl_Button(10, 10, 100, 100, "b1"); + bb1->callback(cb1); + b1 = new Fl_Input(10, 150, 100, 25); + win1->label("win1"); + win1->end(); - Fl_Double_Window *win2 = new Fl_Double_Window(200, 200); - Fl_Button *bb2 = new Fl_Button(10, 10, 100, 100, "b2"); - bb2->callback(cb2); - b2 = new Fl_Input(10, 150, 100, 25); - win2->label("win2"); - win2->end(); + Fl_Double_Window *win2 = new Fl_Double_Window(200, 200); + Fl_Button *bb2 = new Fl_Button(10, 10, 100, 100, "b2"); + bb2->callback(cb2); + b2 = new Fl_Input(10, 150, 100, 25); + win2->label("win2"); + win2->end(); - win1->position(200, 200); - win2->position(400, 200); + win1->position(200, 200); + win2->position(400, 200); - win1->show(); - win2->show(); - return Fl::run(); + win1->show(); + win2->show(); + return Fl::run(); } //