fix small bug(wildcard), and change some comments
[mdictionary] / src / plugins / xdxf / TranslationXdxf.cpp
index fe228b5..584114f 100644 (file)
     Copyright 2010 Comarch S.A.
 
 *******************************************************************************/
-/*! \file TranslationXdxf.cpp
+/*!
+    \file TranslationXdxf.cpp
     \author Jakub Jaszczynski <j.j.jaszczynski@gmail.com>
 */
 
-
 #include "TranslationXdxf.h"
 #include <QDebug>
 
@@ -30,6 +30,7 @@ TranslationXdxf::TranslationXdxf():_key(""),_dictionaryInfo("") {
     xdxfPlugin=0;
 }
 
+
 TranslationXdxf::TranslationXdxf(QString _key, QString _dictionaryInfo,
          XdxfPlugin *xdxfPlugin): _key(_key),_dictionaryInfo(_dictionaryInfo) {
     this->xdxfPlugin=xdxfPlugin;
@@ -43,6 +44,7 @@ QString TranslationXdxf::key() const {
     return _key;
 }
 
+
 QString TranslationXdxf::toXml() const { 
     QString result("");
     if(!xdxfPlugin)
@@ -57,11 +59,12 @@ QString TranslationXdxf::toXml() const {
     return result.replace("&","&amp;");
 }
 
+
 void TranslationXdxf::setKey(QString _key) {
     this->_key=_key;
 }
 
+
 void TranslationXdxf::setDictionaryInfo(QString _dictionaryInfo) {
     this->_dictionaryInfo=_dictionaryInfo;
 }
-