summaryrefslogtreecommitdiff
path: root/documentation/src/editor.dox
diff options
context:
space:
mode:
authorengelsman <engelsman>2009-04-01 16:24:51 +0000
committerengelsman <engelsman>2009-04-01 16:24:51 +0000
commitc34d7585ee5a7fdc0569ab6c3fa16aaffd84561d (patch)
tree263b81c73293fe7fed64a116b672123d575d2b64 /documentation/src/editor.dox
parent509ac7e176175ac829f7a24e7c0b2d61bb5910ed (diff)
minor formatting tweaks to documentation/src/editor.dox
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6734 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'documentation/src/editor.dox')
-rw-r--r--documentation/src/editor.dox8
1 files changed, 4 insertions, 4 deletions
diff --git a/documentation/src/editor.dox b/documentation/src/editor.dox
index 77d8fc391..210a34da1 100644
--- a/documentation/src/editor.dox
+++ b/documentation/src/editor.dox
@@ -124,7 +124,7 @@ textbuf->add_modify_callback(changed_cb, w);
textbuf->call_modify_callbacks();
\endcode
-Finally, we want to use a mono-spaced font like FL_COURIER:
+Finally, we want to use a mono-spaced font like \p FL_COURIER:
\code
w->editor->textfont(FL_COURIER);
@@ -217,7 +217,7 @@ void delete_cb(Fl_Widget*, void* v) {
\subsection editor_find_cb find_cb()
This callback function asks for a search string using the
-fl_input() convenience function and then calls the \c find2_cb()
+fl_input() convenience function and then calls the \p find2_cb()
function to find the string:
\code
@@ -595,7 +595,7 @@ or by using the \p fltk-config script with:
fltk-config --compile editor.cxx
\endcode
-As noted in \ref basics "FLTK Basics", you may need to
+As noted in \ref basics_standard_compiler, you may need to
include compiler and linker options to tell them where to find the FLTK
library. Also, the \p CC command may also be called \p gcc
or \p c++ on your system.
@@ -662,7 +662,7 @@ You'll notice that the comments show a letter next to each
style - each style in the style buffer is referenced using a
character starting with the letter 'A'.
-You call the highlight_data() method to associate the
+You call the \p highlight_data() method to associate the
style data and buffer with the text editor widget:
\code