summaryrefslogtreecommitdiff
path: root/test/tree.fl
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2010-07-10 10:51:54 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2010-07-10 10:51:54 +0000
commitfaf890868480b21c41a3309e66c0e1a9d87abe91 (patch)
tree683b44f148938aec67372976cc17dc41a351e636 /test/tree.fl
parent32716d6b1e8a90cbe61b60994323029ec6abe85c (diff)
Fixed typos and rewrote tree.fl -> tree.cxx/.h
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7673 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test/tree.fl')
-rw-r--r--test/tree.fl4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tree.fl b/test/tree.fl
index 9e70d00dd..42d3c6d80 100644
--- a/test/tree.fl
+++ b/test/tree.fl
@@ -641,14 +641,14 @@ Tests Fl_Tree::clear()} xywh {475 652 90 16} labelsize 11
}
Fl_Button loaddb_button {
label {Load Database...}
- callback {const char *filename = fl_file_chooser("Select a Preferences style Databse", "Preferences(*.prefs)", 0L);
+ callback {const char *filename = fl_file_chooser("Select a Preferences style Database", "Preferences(*.prefs)", 0L);
if (filename) {
tree->clear();
Fl_Preferences prefs(filename, 0L, 0L);
tree->load(prefs);
tree->redraw();
}}
- tooltip {Load the contents of an Fl_Preferences databse into the tree view} xywh {380 612 90 16} labelsize 11
+ tooltip {Load the contents of an Fl_Preferences database into the tree view} xywh {380 612 90 16} labelsize 11
}
}
code {// Initialize Tree