Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

shellext: remove unused wx.. macros

Changeset 4daa99dfb374

Parent 54835ae7700a

by Adrian Buehlmann

Changes to one file · Browse files at 4daa99dfb374 Showing diff from parent 54835ae7700a Diff from another changeset...

 
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
 
69
70
71
 
 
 
 
 
 
 
 
 
 
72
73
74
@@ -69,16 +69,6 @@
 // Convert multibyte string to Unicode string  std::wstring MultibyteToWide(const std::string& multibyte, UINT CodePage = CP_ACP);   -#if wxUSE_UNICODE -#define wxText(xxx) MultibyteToWide(xxx) -#define wxTextCStr(xxx) MultibyteToWide(xxx).c_str() -#define wxAscii(xxx) WideToMultibyte(xxx) -#else -#define wxText(xxx) xxx -#define wxTextCStr(xxx) (xxx).c_str() -#define wxAscii(xxx) xxx -#endif -  // Serialize a vector of strings  std::string SerializeStringVector(const std::vector<std::string>& vStrings,   const std::string& sDelimiter);