summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2014-09-27 00:07:27 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2014-09-27 00:07:27 +0000
commit8ef6520fe3dcae4372b816a49b11024736a0217d (patch)
tree4ac4173204302634c11b10ecfb2f8db88aa5b1d1 /test
parentd6c9db1b92b90c8bc2a52e8132ff68d1669d7943 (diff)
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
Diffstat (limited to 'test')
-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();
}
//