diff options
| author | Tim Redfern <tim@herge.(none)> | 2013-03-06 17:26:24 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@herge.(none)> | 2013-03-06 17:26:24 +0000 |
| commit | 4e2395d52f9da8efbf7385519f4d7d11a7498f90 (patch) | |
| tree | 3d46a4f098adb92889381ba5103090ccf241675f /rotord/xmlIO.cpp | |
| parent | cf9568da9b7698e4d2d507030c1e9ea80cf15291 (diff) | |
mysterious
Diffstat (limited to 'rotord/xmlIO.cpp')
| -rwxr-xr-x | rotord/xmlIO.cpp | 8 |
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); } //--------------------------------------------------------- |
