From 5cd6da0ae4729d3e2eecb054050772199ba33ba3 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Wed, 17 Sep 2008 11:08:59 +0000 Subject: Fixed bad '\' escape sequences (removed "unknown command" warnings). And yes, I added some tags again, because e.g. "@." wouldn't be very well readable in a proportional font (FL_Browser.H). git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6279 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- FL/Fl_Browser.H | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) (limited to 'FL/Fl_Browser.H') 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: - Notice that the @. command can be used to reliably + Notice that the '\@.' command can be used to reliably terminate the parsing. To print a random string in a random color, use - sprintf("@C%d@.%s", color, string) and it will work even if the + sprintf("\@C%d\@.%s", color, string) and it will work even if the string starts with a digit or has the format character in it.

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(). */ -- cgit v1.2.3