git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51349
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
directory. Instead initialize the wxFileName instance like this:
\begin{verbatim}
directory. Instead initialize the wxFileName instance like this:
\begin{verbatim}
-wxFileName dirname( wxT("C:\mydir"), wxEmptyString );
+wxFileName dirname( "C:\mydir", "" );
MyMethod( dirname.GetPath() );
\end{verbatim}
The same can be done using the static method \helpref{wxFileName::DirName}{wxfilenamedirname}:
\begin{verbatim}
MyMethod( dirname.GetPath() );
\end{verbatim}
The same can be done using the static method \helpref{wxFileName::DirName}{wxfilenamedirname}:
\begin{verbatim}
-wxFileName dirname = wxFileName::DirName( wxT("C:\mydir") );
+wxFileName dirname = wxFileName::DirName( "C:\mydir" );
MyMethod( dirname.GetPath() );
\end{verbatim}
MyMethod( dirname.GetPath() );
\end{verbatim}
wxPATH_NATIVE = 0, // the path format for the current platform
wxPATH_UNIX,
wxPATH_BEOS = wxPATH_UNIX,
wxPATH_NATIVE = 0, // the path format for the current platform
wxPATH_UNIX,
wxPATH_BEOS = wxPATH_UNIX,
+ wxPATH_MAC, // the old HFS format, deprecated
wxPATH_DOS,
wxPATH_WIN = wxPATH_DOS,
wxPATH_OS2 = wxPATH_DOS,
wxPATH_DOS,
wxPATH_WIN = wxPATH_DOS,
wxPATH_OS2 = wxPATH_DOS,