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
This commit is contained in:
Albrecht Schlosser 2014-09-27 00:07:27 +00:00
parent d6c9db1b92
commit 8ef6520fe3
1 changed files with 19 additions and 19 deletions

View File

@ -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();
}
//