summaryrefslogtreecommitdiff
path: root/RealtimeSync/xmlProcessing.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:07:15 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:07:15 +0200
commit8318453bf9d4fd50b137ff6c6fc8d1fd22aa6395 (patch)
tree975c6e590c31e56007006a23e7b15d0245d75b08 /RealtimeSync/xmlProcessing.h
parent3.6 (diff)
downloadFreeFileSync-8318453bf9d4fd50b137ff6c6fc8d1fd22aa6395.tar.gz
FreeFileSync-8318453bf9d4fd50b137ff6c6fc8d1fd22aa6395.tar.bz2
FreeFileSync-8318453bf9d4fd50b137ff6c6fc8d1fd22aa6395.zip
3.7
Diffstat (limited to 'RealtimeSync/xmlProcessing.h')
-rw-r--r--RealtimeSync/xmlProcessing.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/RealtimeSync/xmlProcessing.h b/RealtimeSync/xmlProcessing.h
index f50849b1..bcfcf8f2 100644
--- a/RealtimeSync/xmlProcessing.h
+++ b/RealtimeSync/xmlProcessing.h
@@ -19,7 +19,7 @@ struct XmlRealConfig
XmlRealConfig() : delay(5) {}
std::vector<wxString> directories;
wxString commandline;
- unsigned int delay;
+ size_t delay;
};
void readRealConfig(const wxString& filename, XmlRealConfig& config); //throw (xmlAccess::XmlError);
bgstack15