From: Robert Roebling Date: Sat, 12 Apr 2008 16:30:17 +0000 (+0000) Subject: Try to escape backward slash with two of them X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/27482218f01f1e91d454443fa0205215c39b2174?ds=inline Try to escape backward slash with two of them git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53141 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/stdpaths.h b/interface/stdpaths.h index 93e2240127..9b35205818 100644 --- a/interface/stdpaths.h +++ b/interface/stdpaths.h @@ -55,7 +55,7 @@ public: Return the directory containing the system config files. Example return values: @li Unix: @c /etc - @li Windows: @c C:\Documents and Settings\All Users\Application Data + @li Windows: @c C:\\Documents and Settings\\All Users\\Application Data @li Mac: @c /Library/Preferences @see wxFileConfig @@ -66,9 +66,9 @@ public: Return the location of the applications global, i.e. not user-specific, data files. Example return values: - @li Unix: @c @e prefix/share/@e appname + @li Unix: @c prefix/share/appname @li Windows: the directory where the executable file is located - @li Mac: @c @e appname.app/Contents/SharedSupport bundle subdirectory + @li Mac: @c appname.app/Contents/SharedSupport bundle subdirectory @see GetLocalDataDir() */ @@ -78,7 +78,7 @@ public: Return the directory containing the current user's documents. Example return values: @li Unix: @c ~ (the home directory) - @li Windows: @c C:\Documents and Settings\@e username\Documents + @li Windows: @c C:\\Documents and Settings\\username\\Documents @li Mac: @c ~/Documents @wxsince{2.7.0} @@ -88,9 +88,9 @@ public: /** Return the directory and the filename for the current executable. Example return values: - @li Unix: @c /usr/local/bin/@e exename - @li Windows: @c C:\Programs\AppFolder\@e exename.exe - @li Mac: @c /Programs/@e exename + @li Unix: @c /usr/local/bin/exename + @li Windows: @c C:\\Programs\\AppFolder\\exename.exe + @li Mac: @c /Programs/exename */ wxString GetExecutablePath() const;