]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/textctrl.h
Readded wxTreeCtrl event docs
[wxWidgets.git] / interface / wx / textctrl.h
index c4f03743d5e33d597b7c59b90ab4afad0e5dbbd6..3f68fa92f3f6fb72889e065d635df3f3b670bc0c 100644 (file)
@@ -8,7 +8,6 @@
 
 /**
     @class wxTextAttr
-    @wxheader{textctrl.h}
 
     wxTextAttr represents the character and paragraph attributes, or style,
     for a range of text in a wxTextCtrl or wxRichTextCtrl.
@@ -648,7 +647,6 @@ enum wxTextCtrlHitTestResult
 
 /**
     @class wxTextCtrl
-    @wxheader{textctrl.h}
 
     A text control allows text to be displayed and edited.
 
@@ -1556,7 +1554,6 @@ public:
 
 /**
     @class wxStreamToTextRedirector
-    @wxheader{textctrl.h}
 
     This class can be used to (temporarily) redirect all output sent to a C++
     ostream object to a wxTextCtrl instead.
@@ -1571,21 +1568,17 @@ public:
 
     @code
     using namespace std;
-
-      wxTextCtrl *text = new wxTextCtrl(...);
-
-      {
+    wxTextCtrl* text = new wxTextCtrl(...);
+    {
         wxStreamToTextRedirector redirect(text);
 
         // this goes to the text control
-        cout  "Hello, text!"  endl;
-      }
-
-      // this goes somewhere else, presumably to stdout
-      cout  "Hello, console!"  endl;
+        cout << "Hello, text!" << endl;
+    }
+    // this goes somewhere else, presumably to stdout
+    cout << "Hello, console!" << endl;
     @endcode
 
-
     @library{wxcore}
     @category{logging}