X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/59396417d3285f933762d252d33ed095e6ffe299..242019eef3fdcdb12b5310da67af3ef6d15e0f58:/docs/latex/wx/text.tex diff --git a/docs/latex/wx/text.tex b/docs/latex/wx/text.tex index 142962440f..083659f1b6 100644 --- a/docs/latex/wx/text.tex +++ b/docs/latex/wx/text.tex @@ -173,7 +173,7 @@ control. This could be done in the following way: wxTextCtrl *control = new wxTextCtrl(...); std::streambuf *sbOld = std::cout.rdbuf(); - std::cout.rdbuf(*control); + std::cout.rdbuf(control); // use cout as usual, the output appears in the text control ... @@ -335,8 +335,8 @@ the programmer should use \helpref{GetInsertionPoint}{wxtextctrlgetinsertionpoin Call this function to enable auto-completion of the text typed in a single-line text control using the given \arg{choices}. -Notice that currently this function is only implemented in wxGTK2 port and does -nothing under the other platforms. +Notice that currently this function is only implemented in wxGTK2 and wxMSW +ports and does nothing under the other platforms. \newsince{2.9.0}