summaryrefslogtreecommitdiff
path: root/rotord/xmlIO.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'rotord/xmlIO.cpp')
-rwxr-xr-xrotord/xmlIO.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/rotord/xmlIO.cpp b/rotord/xmlIO.cpp
index d83380c..3a7ec61 100755
--- a/rotord/xmlIO.cpp
+++ b/rotord/xmlIO.cpp
@@ -70,9 +70,9 @@ void xmlIO::clear(){
//---------------------------------------------------------
bool xmlIO::loadFile(const string& xmlFile){
- string fullXmlFile = ofToDataPath(xmlFile);
+ //string fullXmlFile = ofToDataPath(xmlFile);
- bool loadOkay = doc.LoadFile(fullXmlFile);
+ bool loadOkay = doc.LoadFile(xmlFile);
//theo removed bool check as it would
//return false if the file exists but was
@@ -88,8 +88,8 @@ bool xmlIO::loadFile(const string& xmlFile){
//---------------------------------------------------------
bool xmlIO::saveFile(const string& xmlFile){
- string fullXmlFile = ofToDataPath(xmlFile);
- return doc.SaveFile(fullXmlFile);
+ //string fullXmlFile = ofToDataPath(xmlFile);
+ return doc.SaveFile(xmlFile);
}
//---------------------------------------------------------