Added '\' before all '_' chars that were not inside VERBATIM blocks

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10303 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
George Tasker
2001-05-24 10:39:33 +00:00
parent a66abda9d3
commit e72403492b
17 changed files with 103 additions and 103 deletions

View File

@@ -125,7 +125,7 @@ wxCSConv cust(user_encoding);
printf("Data: %s\n", (const char*) str.mb_str(cust));
\end{verbatim}
Note: Since mb_str() returns a temporary wxCharBuffer to hold the result
Note: Since mb\_str() returns a temporary wxCharBuffer to hold the result
of the conversion, you need to explicitly cast it to const char* if you use
it in a vararg context (like with printf).
@@ -171,7 +171,7 @@ process_data(tmp_str);
\end{verbatim}
If a conversion had taken place in cWX2MB (i.e. in a Unicode build),
the buffer will be deallocated as soon as tmp_buf goes out of scope.
the buffer will be deallocated as soon as tmp\_buf goes out of scope.
(The macro wxWX2MBbuf reflects the correct return value of cWX2MB
(either char* or wxCharBuffer), except for the const.)