summaryrefslogtreecommitdiff
path: root/RealtimeSync/xml_proc.h
diff options
context:
space:
mode:
Diffstat (limited to 'RealtimeSync/xml_proc.h')
-rw-r--r--RealtimeSync/xml_proc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/RealtimeSync/xml_proc.h b/RealtimeSync/xml_proc.h
index ab57e816..671a237f 100644
--- a/RealtimeSync/xml_proc.h
+++ b/RealtimeSync/xml_proc.h
@@ -8,7 +8,7 @@
#define XMLPROCESSING_H_INCLUDED
#include <vector>
-#include <wx/string.h>
+//#include <wx/string.h>
#include <zen/zstring.h>
#include "../lib/xml_base.h"
@@ -18,9 +18,9 @@ namespace xmlAccess
struct XmlRealConfig
{
XmlRealConfig() : delay(10) {}
- std::vector<wxString> directories;
- wxString commandline;
- size_t delay;
+ std::vector<Zstring> directories;
+ Zstring commandline;
+ unsigned int delay;
};
void readRealConfig(const Zstring& filename, XmlRealConfig& config); //throw FfsXmlError
bgstack15