summaryrefslogtreecommitdiff
path: root/test/message.cxx
diff options
context:
space:
mode:
authorAaron M. Ucko <ucko@debian.org>2007-05-20 01:20:30 +0000
committerAaron M. Ucko <ucko@debian.org>2007-05-20 01:20:30 +0000
commitda5f6f8dd1f87d32cea2f882d251ebaecc3c7629 (patch)
tree5772cc71ce588e5cbdbb7e458e2c5876dcbc8fcc /test/message.cxx
parentee19f9cc1847049ccb983313bb11df47d253df16 (diff)
parent9b5d5801c27165ad47245acb580f30b8ce2d20b4 (diff)
Merge new upstream snapshot / release candidate (1.1.8~r5840) into trunk.
Diffstat (limited to 'test/message.cxx')
-rw-r--r--test/message.cxx15
1 files changed, 11 insertions, 4 deletions
diff --git a/test/message.cxx b/test/message.cxx
index 8a7af54..bee5750 100644
--- a/test/message.cxx
+++ b/test/message.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: message.cxx 4626 2005-11-02 13:57:56Z matt $"
+// "$Id: message.cxx 5805 2007-05-09 12:42:39Z matt $"
//
// Message test program for the Fast Light Tool Kit (FLTK).
//
@@ -38,8 +38,15 @@ int main(int argc, char **argv) {
fl_message("Spelling check sucessful, %d errors found with %g%% confidence",
1002, 100*(15/77.0));
- fl_alert("Quantum fluctuations in the space-time continuum detected, "
- "you have %g seconds to comply.", 10.0);
+ fl_alert(
+ "Quantum fluctuations in the space-time continuum detected,\n"
+ "you have %g seconds to comply.\n\n"
+ "\"In physics, spacetime is any mathematical model that combines\n"
+ "space and time into a single construct called the space-time\n"
+ "continuum. Spacetime is usually interpreted with space being\n"
+ "three-dimensional and time playing the role of the\n"
+ "fourth dimension.\" - Wikipedia",
+ 10.0);
printf("fl_choice returned %d\n",
fl_choice("Do you really want to %s?", "No", "Yes", 0L, "continue"));
@@ -59,5 +66,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: message.cxx 4626 2005-11-02 13:57:56Z matt $".
+// End of "$Id: message.cxx 5805 2007-05-09 12:42:39Z matt $".
//