]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix stc doxygen warnings and regen stc files.
authorSteve Lamerton <steve.lamerton@gmail.com>
Wed, 11 Sep 2013 12:03:07 +0000 (12:03 +0000)
committerSteve Lamerton <steve.lamerton@gmail.com>
Wed, 11 Sep 2013 12:03:07 +0000 (12:03 +0000)
We need to manually escape a few parts of the autogenerated documentation.

See #15346.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74783 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/stc/stc.h
interface/wx/stc/stc.h
src/stc/gen_iface.py
src/stc/stc.cpp
src/stc/stc.interface.h.in

index 434783c223b5d28deba4fa5a480934a8e6027de1..7ffab648bd925835b43b10e2713017e5017cfcde 100644 (file)
@@ -3255,12 +3255,12 @@ public:
     // Returns the length of the replacement text.
     int ReplaceTarget(const wxString& text);
 
-    // Replace the target text with the argument text after \d processing.
+    // Replace the target text with the argument text after \\d processing.
     // Text is counted so it can contain NULs.
-    // Looks for \d where d is between 1 and 9 and replaces these with the strings
+    // Looks for \\d where d is between 1 and 9 and replaces these with the strings
     // matched in the last search operation which were surrounded by \( and \).
     // Returns the length of the replacement text including any change
-    // caused by processing the \d patterns.
+    // caused by processing the \\d patterns.
     int ReplaceTargetRE(const wxString& text);
 
     // Search for a counted string in the target and set the target to the found
@@ -3469,7 +3469,7 @@ public:
     // Change the effect of pasting when there are multiple selections.
     void SetMultiPaste(int multiPaste);
 
-    // Retrieve the effect of pasting when there are multiple selections..
+    // Retrieve the effect of pasting when there are multiple selections.
     int GetMultiPaste() const;
 
     // Retrieve the value of a tag from a regular expression search.
index 638bf5f085762e1f148199bb030b128820da5a28..18c2117d98427afb6fbf3a1908a426a919384c6b 100644 (file)
         TOWRITE
     @endEventTable
 
-    @library{wxbase}
+    @library{wxstc}
     @category{stc}
 
     @see wxStyledTextEvent
@@ -3734,12 +3734,12 @@ public:
     int ReplaceTarget(const wxString& text);
 
     /**
-        Replace the target text with the argument text after \d processing.
+        Replace the target text with the argument text after \\d processing.
         Text is counted so it can contain NULs.
-        Looks for \d where d is between 1 and 9 and replaces these with the strings
+        Looks for \\d where d is between 1 and 9 and replaces these with the strings
         matched in the last search operation which were surrounded by \( and \).
         Returns the length of the replacement text including any change
-        caused by processing the \d patterns.
+        caused by processing the \\d patterns.
     */
     int ReplaceTargetRE(const wxString& text);
 
@@ -4080,7 +4080,7 @@ public:
     void SetMultiPaste(int multiPaste);
 
     /**
-        Retrieve the effect of pasting when there are multiple selections..
+        Retrieve the effect of pasting when there are multiple selections.
     */
     int GetMultiPaste() const;
 
@@ -5567,8 +5567,8 @@ public:
     
           bold                    turns on bold
           italic                  turns on italics
-          fore:[name or #RRGGBB]  sets the foreground colour
-          back:[name or #RRGGBB]  sets the background colour
+          fore:[name or \#RRGGBB]  sets the foreground colour
+          back:[name or \#RRGGBB]  sets the background colour
           face:[facename]         sets the font face name to use
           size:[num]              sets the font size in points
           eol                     turns on eol filling
@@ -5796,7 +5796,7 @@ public:
 
     @todo list styled text ctrl events.
 
-    @library{stc}
+    @library{wxstc}
     @category{events,stc}
 */
 
index d332807c837984e21bfdb846b1acf7025755c308..af2adbbb587d2012745c467a0be1eb397bc1a191 100755 (executable)
@@ -614,7 +614,12 @@ methodOverrideMap = {
      int %s(const wxString& text) {
          const wxWX2MBbuf buf = wx2stc(text);
          return SendMsg(%s, wx2stclen(text, buf), (sptr_t)(const char*)buf);''',
-     0),
+     ('Replace the target text with the argument text after \\\d processing.',
+      'Text is counted so it can contain NULs.',
+      'Looks for \\\d where d is between 1 and 9 and replaces these with the strings',
+      'matched in the last search operation which were surrounded by \( and \).',
+      'Returns the length of the replacement text including any change',
+      'caused by processing the \\\d patterns.',)),
 
     'SearchInTarget' :
     (0,
@@ -913,6 +918,10 @@ methodOverrideMap = {
       """void* %s(int operation, void* pointer) {
            return (void*)(sptr_t)SendMsg(%s, operation, (sptr_t)pointer); """,
       0),
+      
+    'GetMultiPaste' : 
+    (0, 0, 0, 
+    ('Retrieve the effect of pasting when there are multiple selections.',)),
     
     '' : ('', 0, 0, 0),
 
index 625694fee4ee9aa3a40498a17c850c5a4386f226..93e4266d2bef4036d5bff6a3ac497dae9d4b5e9a 100644 (file)
@@ -1796,12 +1796,12 @@ int wxStyledTextCtrl::GetTargetEnd() const
          return SendMsg(2194, wx2stclen(text, buf), (sptr_t)(const char*)buf);
 }
 
-// Replace the target text with the argument text after \d processing.
+// Replace the target text with the argument text after \\d processing.
 // Text is counted so it can contain NULs.
-// Looks for \d where d is between 1 and 9 and replaces these with the strings
+// Looks for \\d where d is between 1 and 9 and replaces these with the strings
 // matched in the last search operation which were surrounded by \( and \).
 // Returns the length of the replacement text including any change
-// caused by processing the \d patterns.
+// caused by processing the \\d patterns.
 
      int wxStyledTextCtrl::ReplaceTargetRE(const wxString& text) {
          const wxWX2MBbuf buf = wx2stc(text);
@@ -2210,7 +2210,7 @@ void wxStyledTextCtrl::SetMultiPaste(int multiPaste)
     SendMsg(2614, multiPaste, 0);
 }
 
-// Retrieve the effect of pasting when there are multiple selections..
+// Retrieve the effect of pasting when there are multiple selections.
 int wxStyledTextCtrl::GetMultiPaste() const
 {
     return SendMsg(2615, 0, 0);
index 27a85dff675f33447928fce7389164b27a80feef..0aae4703cd8766517960d99fa3aeb3056a7ad65c 100644 (file)
         TOWRITE
     @endEventTable
 
-    @library{wxbase}
+    @library{wxstc}
     @category{stc}
 
     @see wxStyledTextEvent
@@ -169,8 +169,8 @@ public:
     
           bold                    turns on bold
           italic                  turns on italics
-          fore:[name or #RRGGBB]  sets the foreground colour
-          back:[name or #RRGGBB]  sets the background colour
+          fore:[name or \#RRGGBB]  sets the foreground colour
+          back:[name or \#RRGGBB]  sets the background colour
           face:[facename]         sets the font face name to use
           size:[num]              sets the font size in points
           eol                     turns on eol filling
@@ -398,7 +398,7 @@ public:
 
     @todo list styled text ctrl events.
 
-    @library{stc}
+    @library{wxstc}
     @category{events,stc}
 */