summaryrefslogtreecommitdiff
path: root/RealtimeSync/xml_ffs.h
diff options
context:
space:
mode:
Diffstat (limited to 'RealtimeSync/xml_ffs.h')
-rw-r--r--RealtimeSync/xml_ffs.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/RealtimeSync/xml_ffs.h b/RealtimeSync/xml_ffs.h
index abff3c10..b63c3620 100644
--- a/RealtimeSync/xml_ffs.h
+++ b/RealtimeSync/xml_ffs.h
@@ -8,13 +8,14 @@
#define XMLFREEFILESYNC_H_INCLUDED
#include "xml_proc.h"
+#include <zen/zstring.h>
//reuse (some of) FreeFileSync's xml files
namespace rts
{
-void readRealOrBatchConfig(const wxString& filename, xmlAccess::XmlRealConfig& config); //throw (xmlAccess::FfsXmlError);
+void readRealOrBatchConfig(const Zstring& filename, xmlAccess::XmlRealConfig& config); //throw FfsXmlError
int getProgramLanguage();
}
bgstack15