Fixed some of memory leaks and sigsev and bugs
[mdictionary] / trunk / src / base / backbone / BookmarkTranslations.h
index 29ff21e..7f2dd6a 100644 (file)
@@ -59,14 +59,11 @@ public:
     QString toHtml() const {
         if(!_key.size() || !_bookmarks)
             return "";
-        qDebug() << ">toHtml";
 
         QStringList list = _bookmarks->search(_key, _dictionaryInfo);
-        qDebug() << "toHtml" << list.size();
         QString result;
         foreach(QString translation, list)
             result += translation + "\n";
-        qDebug() << "<toHtml";
         return result;
 
     }