Merge branch 'master' into qmake
[mdictionary] / src / mdictionary / gui / WordListWidget.h
index cc6d72e..f06d889 100644 (file)
@@ -27,6 +27,7 @@
 #include <QtGui>
 #include <QStringListModel>
 #include "../backbone/backbone.h"
+#include "WordListProxyStyle.h"
 
 //! Displays list of words found in dictionaries
 /*!
@@ -40,6 +41,7 @@ class WordListWidget : public QTreeView {
     Q_OBJECT
 public:
     explicit WordListWidget(QWidget *parent = 0);
+    ~WordListWidget();
 
 
 Q_SIGNALS:
@@ -103,6 +105,7 @@ private:
 
     //! Association between words and their translations
     QHash<QString, QList<Translation*> > searchResult;
+    WordListProxyStyle* proxyStyle;
 };
 
 #endif // WORDLISTWIDGET_H