summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorGreg Ercolano <erco@seriss.com>2024-08-12 18:31:05 -0700
committerGreg Ercolano <erco@seriss.com>2024-08-12 18:31:05 -0700
commit85d1d904ecc87519c0b49ae4a1def11fe7ed0c75 (patch)
tree4ebb02ea59165d9f2acd7cd93c906f33fb06e169 /FL
parentf825fca43c4c0024f8ca74dc4ed8f3f9f121ead1 (diff)
Small doc fixes (\See -> \see)
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl_Terminal.H15
1 files changed, 5 insertions, 10 deletions
diff --git a/FL/Fl_Terminal.H b/FL/Fl_Terminal.H
index 426373e2e..dc11e311c 100644
--- a/FL/Fl_Terminal.H
+++ b/FL/Fl_Terminal.H
@@ -1173,18 +1173,13 @@ public:
// API: Show unknown/invalid utf8/ANSI sequences with an error character (¿).
bool show_unknown(void) const;
void show_unknown(bool val);
-
- /** Sets the "error character" utf8 string shown for invalid utf8
- or bad ANSI sequences if show_unknown() is true. Default: "¿".
- \See show_unknown(bool)
- */
+ /// Sets the "error character" utf8 string shown for invalid utf8
+ /// or bad ANSI sequences if show_unknown() is true. Default: "¿".
+ /// \see show_unknown(bool)
void error_char(const char* val) { error_char_ = val; }
-
- /** Returns the "error character" utf8 string, which is shown for invalid utf8
- or bad ANSI sequences if show_unknown() is true. \See show_unknown(bool)
- */
+ /// Returns the "error character" utf8 string, which is shown for invalid utf8
+ /// or bad ANSI sequences if show_unknown() is true. \see show_unknown(bool)
const char* error_char(void) const { return error_char_; }
-public:
// API: ANSI sequences
bool ansi(void) const;
void ansi(bool val);