summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-08-20 16:15:29 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-08-20 16:15:29 +0000
commit5ab5efff1150751a3209711d9b54e79e46e0b894 (patch)
tree2ffc0f6feea4cbfbb6d7ff01711667d71d6a6ff3 /test
parenta166e84e6f66d3ef52236d132166fec0d3d06fcf (diff)
Add tooltips to the output widgets to see if we can figure out why
tooltips don't work for a user... git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2598 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test')
-rw-r--r--test/output.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/output.cxx b/test/output.cxx
index 91bccfdd4..dcb26a5de 100644
--- a/test/output.cxx
+++ b/test/output.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: output.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:33 easysw Exp $"
+// "$Id: output.cxx,v 1.4.2.3.2.2 2002/08/20 16:15:29 easysw Exp $"
//
// Output test program for the Fast Light Tool Kit (FLTK).
//
@@ -85,11 +85,13 @@ int main(int argc, char **argv) {
text2 = new Fl_Multiline_Output(100,150,200,100,"Fl_Multiline_Output");
text2->value(input->value());
text2->align(FL_ALIGN_BOTTOM);
+ text2->tooltip("This is an Fl_Multiline_Output widget.");
window->resizable(text2);
text = new Fl_Output(100,280,200,30,"Fl_Output");
text->value(input->value());
text->align(FL_ALIGN_BOTTOM);
+ text->tooltip("This is an Fl_Output widget.");
window->forms_end();
window->show(argc,argv);
@@ -97,5 +99,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: output.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:33 easysw Exp $".
+// End of "$Id: output.cxx,v 1.4.2.3.2.2 2002/08/20 16:15:29 easysw Exp $".
//