summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/twowin.cxx44
1 files changed, 22 insertions, 22 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 *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->show();
- win2->show();
- return Fl::run();
+ 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();
+
+ win1->position(200, 200);
+ win2->position(400, 200);
+
+ win1->show();
+ win2->show();
+ return Fl::run();
}
//