mirror of https://github.com/fltk/fltk
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:
parent
d6c9db1b92
commit
8ef6520fe3
|
@ -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();
|
||||
}
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue