summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--documentation/Doxyfile3
-rw-r--r--documentation/drawing.dox2
2 files changed, 3 insertions, 2 deletions
diff --git a/documentation/Doxyfile b/documentation/Doxyfile
index d8ca0507a..cf64577f9 100644
--- a/documentation/Doxyfile
+++ b/documentation/Doxyfile
@@ -548,7 +548,8 @@ RECURSIVE = YES
# excluded from the INPUT source files. This way you can easily exclude a
# subdirectory from a directory tree whose root is specified with the INPUT tag.
-EXCLUDE =
+EXCLUDE = ../src/fl_font_win32.cxx ../src/fl_font_mac.cxx \
+ ../src/forms_compatability.cxx
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
# directories that are symbolic links (a Unix filesystem feature) are excluded
diff --git a/documentation/drawing.dox b/documentation/drawing.dox
index f0f9efaaa..794438d7f 100644
--- a/documentation/drawing.dox
+++ b/documentation/drawing.dox
@@ -645,7 +645,7 @@ if this source will be compiled on multiple platforms.
<P>Assuming that the following source code was written on MS Windows,
this example will output the correct label on OS X and X11 as well.
Without the conversion call, the label on OS X would read
-<tt>Fahrvergn&cedil;gen</tt> with a deformed umlaut u.
+<tt>Fahrvergn\\&cedil;gen</tt> with a deformed umlaut u.
\code
btn = new Fl_Button(10, 10, 300, 25);
btn->copy_label(fl_latin1_to_local("Fahrvergn&uuml;gen"));