]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/registry.cpp
missing commit
[wxWidgets.git] / src / msw / registry.cpp
index 80903a6e4d473375c01d9edc10d3c1a17ba13f41..144009b810b7cf2f9a08144b8faa65f3a745c1b8 100644 (file)
 #include "wx/dynlib.h"
 #include "wx/file.h"
 #include "wx/wfstream.h"
+#include "wx/msw/private.h"
 
 // Windows headers
 #ifdef __WXWINCE__
-#include "wx/msw/private.h"
 #include <winbase.h>
 #include <winreg.h>
 #endif
@@ -1057,7 +1057,7 @@ bool wxRegKey::SetValue(const wxString& szValue, const wxString& strValue)
       m_dwLastError = RegSetValueEx((HKEY) m_hKey,
                                     RegValueStr(szValue),
                                     (DWORD) RESERVED, REG_SZ,
-                                    (RegString)static_cast<const TCHAR *>(strValue.t_str()),
+                                    (RegString)wxMSW_CONV_LPCTSTR(strValue),
                                     (strValue.Len() + 1)*sizeof(wxChar));
       if ( m_dwLastError == ERROR_SUCCESS )
         return true;