diff --git a/FL/Fl_Browser.H b/FL/Fl_Browser.H index e379e257e..8f0d6e10a 100644 --- a/FL/Fl_Browser.H +++ b/FL/Fl_Browser.H @@ -152,32 +152,32 @@ public: /** The first form gets the current format code prefix character, which by - default is @. A string of formatting codes at the start of + default is '\@'. A string of formatting codes at the start of each column are stripped off and used to modify how the rest of the line is printed:
The second form sets the current prefix to c. Set the prefix to 0 to disable formatting. @@ -187,14 +187,14 @@ public: void format_char(char c) {format_char_ = c;} /** The first form gets the current column separator character. By default - this is '\t' (tab). + this is '\\t' (tab).
The second form sets the column separator to c. This will only have an effect if you also set column_widths(). */ char column_char() const {return column_char_;} /** The first form gets the current column separator character. By default - this is '\t' (tab). + this is '\\t' (tab).
The second form sets the column separator to c. This will only have an effect if you also set column_widths(). */ diff --git a/FL/Fl_Input.H b/FL/Fl_Input.H index f866f3b44..397f118d8 100644 --- a/FL/Fl_Input.H +++ b/FL/Fl_Input.H @@ -38,7 +38,7 @@ of text and lets the user edit it. Normally it is drawn with an inset box and a white background. The text may contain any characters (even 0), and will correctly display anything, using - ^X notation for unprintable control characters and \nnn notation + ^X notation for unprintable control characters and \\nnn notation for unprintable characters with the high bit set. It assumes the font can draw any characters in the ISO-8859-1 character set.
@@ -67,8 +67,8 @@ or deletes the selected region.There is a single subclass, Fl_Multiline_Output, which allows you to display multiple lines of text.
-The text may contain any characters except \0, and will correctly +
The text may contain any characters except \\0, and will correctly display anything, using ^X notation for unprintable control characters - and \nnn notation for unprintable characters with the high bit set. It + and \\nnn notation for unprintable characters with the high bit set. It assumes the font can draw any characters in the ISO-Latin1 character set. */ diff --git a/src/Fl_File_Chooser2.cxx b/src/Fl_File_Chooser2.cxx index be0c8ebd4..7bf9b6305 100644 --- a/src/Fl_File_Chooser2.cxx +++ b/src/Fl_File_Chooser2.cxx @@ -114,7 +114,7 @@
The pattern argument can be a NULL string or "*" to list all files, or it can be a series of descriptions and filter strings separated by tab - characters (\t). The format of filters is either + characters (\\t). The format of filters is either "Description text (patterns)" or just "patterns". A file chooser that provides filters for HTML and image files might look like: