]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/stdpaths.tex
Bug 1099143 and more occurences of the same set vs. get mistakes.
[wxWidgets.git] / docs / latex / wx / stdpaths.tex
index f4f7ce4cf2bd7c78dfd8349667d88a09a43e0753..a4252831c3d8d380db6acd0c60d946dcfc65d6e8 100644 (file)
@@ -40,6 +40,9 @@ applications. I.e. under Unix you should follow the standard installation
 conventions and under Mac you should create your application bundle according
 to the Apple guidelines. Again, this class doesn't help you to do it.
 
+This class is MT-safe: its methods may be called concurrently from different
+threads without additional locking.
+
 \wxheading{Derived from}
 
 No base class
@@ -61,7 +64,7 @@ Return the directory containing the system config files.
 Example return values:
 \begin{itemize}
     \item Unix: \texttt{/etc}
-    \item Windows: \texttt{C:$\backslash$Windows}
+    \item Windows: \texttt{C:$\backslash$Documents and Settings$\backslash$All Users$\backslash$Application Data}
     \item Mac: \texttt{/Library/Preferences}
 \end{itemize}
 
@@ -139,9 +142,9 @@ Example return values:
 
 Return the directory for the user config files:
 \begin{itemize}
-    \item Unix: \texttt{\verb|~|} (the home directory)
-    \item Windows: \texttt{C:$\backslash$Documents and Settings$\backslash$\textit{username}}
-    \item Mac: \texttt{\verb|~|/Library/Preferences}
+    \item Unix: \tt{~} (the home directory)
+    \item Windows: \tt{C:\\Documents and Settings\\\textit{username}}
+    \item Mac: \tt{~/Library/Preferences}
 \end{itemize}
 
 Only use this method if you have a single configuration file to put in this
@@ -155,9 +158,9 @@ more appropriate.
 
 Return the directory for the user-dependent application data files:
 \begin{itemize}
-    \item Unix: \texttt{\verb|~|/.\textit{appname}}
-    \item Windows: \texttt{C:$\backslash$Documents and Settings$\backslash$\textit{username}$\backslash$Application Data$\backslash$\textit{appname}}
-    \item Mac: \texttt{\verb|~|/Library/Application Support/\textit{appname}}
+    \item Unix: \tt{~/.\textit{appname}}
+    \item Windows: \tt{C:\\Documents and Settings\\\textit{username}\\Application Data\\\textit{appname}}
+    \item Mac: \tt{~/Library/Application Support/\textit{appname}}
 \end{itemize}