First work on grid

This commit is contained in:
2011-10-20 11:11:59 +02:00
parent ea054b48ad
commit 5bea328b8d
12 changed files with 1928 additions and 19 deletions

View File

@@ -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); \