]> git.saurik.com Git - wxWidgets.git/commitdiff
Docs corrections from Tim Stahlhut
authorRobert Roebling <robert@roebling.de>
Mon, 25 Aug 2008 09:12:15 +0000 (09:12 +0000)
committerRobert Roebling <robert@roebling.de>
Mon, 25 Aug 2008 09:12:15 +0000 (09:12 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55252 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/stdpaths.h
interface/wx/utils.h
interface/wx/xrc/xmlres.h

index f115e5458c7710f88363b8cc5ad768b2d3035e36..f8516d0ce518feb53c200fc72cefe124876115da 100644 (file)
@@ -180,7 +180,7 @@ public:
     /**
         Return the directory for the user-dependent application data files:
              - Unix: @c ~/.appname
-             - Windows: @c C:\\Documents @c and @c Settings\\username\Application @c Data\appname
+             - Windows: @c C:\\Documents @c and @c Settings\\username\Application @c Data\\appname
              - Mac: @c ~/Library/Application @c Support/appname
     */
     wxString GetUserDataDir() const;
@@ -189,7 +189,7 @@ public:
         Return the directory for user data files which shouldn't be shared with
         the other machines.
         This is the same as GetUserDataDir() for all platforms except Windows where it returns
-        @c C:\\Documents @c and @c Settings\\username\\Local @c Settings\\Application @c Data\appname
+        @c C:\\Documents @c and @c Settings\\username\\Local @c Settings\\Application @c Data\\appname
     */
     wxString GetUserLocalDataDir() const;
 
index d4b6d21b787e9ec00545595e2f6d0c333a451eab..aec4146a6790be581fd497380172469a6e33f7ff 100644 (file)
@@ -510,7 +510,7 @@ void wxSetDisplayName(const wxString& displayName);
     By default, the functions strips both the mnemonics character (@c '&')
     which is used to indicate a keyboard shortkey, and the accelerators, which
     are used only in the menu items and are separated from the main text by the
-    @c \t (TAB) character. By using @a flags of @c wxStrip_Mnemonics or
+    @c \\t (TAB) character. By using @a flags of @c wxStrip_Mnemonics or
     @c wxStrip_Accel to strip only the former or the latter part, respectively.
 
     Notice that in most cases wxMenuItem::GetLabelFromText() or
index c63738d48b850632b478d47bd8079e2810123052..a74ba85f4566181025418d9a13e0c79f4e2b2885 100644 (file)
@@ -402,7 +402,7 @@ public:
 
     /**
         Gets text from param and does some conversions:
-         replaces \n, \r, \t by respective characters (according to C syntax)
+         replaces \\n, \\r, \\t by respective characters (according to C syntax)
          replaces @c $ by @c  and @c $$ by @c $ (needed for @c _File to @c File
         translation because of XML syntax)
          calls wxGetTranslations (unless disabled in wxXmlResource)