Add destructor to BaseHoverHandler.

This commit is contained in:
Leandro Melo
2010-09-24 20:17:40 +02:00
parent cafcce0c37
commit b4d9a23417
2 changed files with 4 additions and 0 deletions

View File

@@ -52,6 +52,9 @@ BaseHoverHandler::BaseHoverHandler(QObject *parent) : QObject(parent)
this, SLOT(editorOpened(Core::IEditor *)));
}
BaseHoverHandler::~BaseHoverHandler()
{}
void BaseHoverHandler::editorOpened(Core::IEditor *editor)
{
if (acceptEditor(editor)) {

View File

@@ -54,6 +54,7 @@ class TEXTEDITOR_EXPORT BaseHoverHandler : public QObject
Q_OBJECT
public:
BaseHoverHandler(QObject *parent = 0);
virtual ~BaseHoverHandler();
private slots:
void editorOpened(Core::IEditor *editor);