]> git.saurik.com Git - wxWidgets.git/commitdiff
GetLongPath() should just do nothing under CE as there are no short/long paths there...
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 10 Dec 2006 15:35:41 +0000 (15:35 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 10 Dec 2006 15:35:41 +0000 (15:35 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43899 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/filename.cpp

index 8ec78cad96c7e01dfdfc7693bfd09c2ee5cb237e..234ac801380c964f309a0d55bb62e051da451650 100644 (file)
@@ -1793,7 +1793,7 @@ wxString wxFileName::GetLongPath() const
     wxString pathOut,
              path = GetFullPath();
 
-#if defined(__WIN32__) && !defined(__WXMICROWIN__)
+#if defined(__WIN32__) && !defined(__WXWINCE__) && !defined(__WXMICROWIN__)
 
 #if wxUSE_DYNAMIC_LOADER
     typedef DWORD (WINAPI *GET_LONG_PATH_NAME)(const wxChar *, wxChar *, DWORD);