First work on grid
This commit is contained in:
@@ -32,7 +32,7 @@
|
||||
|
||||
#define APP_VERSION "0.3"
|
||||
|
||||
#define ESCAPE_CHARS(s) s.replace("\"", "\\\"");
|
||||
#define ESCAPE_CHARS(s) s = s.replace("\"", "\\\"");
|
||||
/*{ \
|
||||
if (s.Find(wxT("\\\"")) == wxNOT_FOUND) \
|
||||
s.Replace(wxT("\""), wxT("\\\""), true); \
|
||||
@@ -40,7 +40,7 @@
|
||||
s.Replace(wxT("\'"), wxT("\\\'"), true); \
|
||||
}
|
||||
*/
|
||||
#define UNESCAPE_CHARS(s) s.replace("\\\"", "\"");
|
||||
#define UNESCAPE_CHARS(s) s = s.replace("\\\"", "\"");
|
||||
/*{ \
|
||||
s.Replace(wxT("\\\""), wxT("\""), true); \
|
||||
s.Replace(wxT("\\\'"), wxT("\'"), true); \
|
||||
|
Reference in New Issue
Block a user