diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-08 20:52:00 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-08 20:52:00 +0300 |
commit | b639270b2854e2d069bbff9b888dfeb159f9b400 (patch) | |
tree | 07cafe4ccf666a63ded20a0d314004bea4b40f3e /src/configuration.cpp | |
parent | 196cc38da19b867eaa9419343dd6ecd8212af354 (diff) | |
download | plus-b639270b2854e2d069bbff9b888dfeb159f9b400.tar.gz plus-b639270b2854e2d069bbff9b888dfeb159f9b400.tar.bz2 plus-b639270b2854e2d069bbff9b888dfeb159f9b400.tar.xz plus-b639270b2854e2d069bbff9b888dfeb159f9b400.zip |
Fix code style.
Diffstat (limited to 'src/configuration.cpp')
-rw-r--r-- | src/configuration.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/configuration.cpp b/src/configuration.cpp index a9c4037e9..2ba53cca4 100644 --- a/src/configuration.cpp +++ b/src/configuration.cpp @@ -757,8 +757,8 @@ void ConfigurationObject::writeToXML(const XmlTextWriterPtr writer) } #endif XmlTextWriterStartElement(writer, "option"); - XmlTextWriterWriteAttribute(writer,"name", i->first.c_str()); - XmlTextWriterWriteAttribute(writer,"value", i->second.c_str()); + XmlTextWriterWriteAttribute(writer, "name", i->first.c_str()); + XmlTextWriterWriteAttribute(writer, "value", i->second.c_str()); xmlTextWriterEndElement(writer); } |