CppTools: Remove unnecessary code from abstracteditorsupport

Change-Id: Ie9032ea494d151a491d37cd5e777f3c2df40f1e2
Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
This commit is contained in:
Tobias Hunger
2015-09-09 16:04:33 +02:00
parent 04cc526630
commit d0a8f5acbf
2 changed files with 0 additions and 8 deletions

View File

@@ -32,9 +32,6 @@
#include "cppfilesettingspage.h"
#include "cppmodelmanager.h"
#include <cplusplus/Overview.h>
#include <QDebug>
namespace CppTools {
@@ -43,10 +40,6 @@ AbstractEditorSupport::AbstractEditorSupport(CppModelManager *modelmanager) :
{
}
AbstractEditorSupport::~AbstractEditorSupport()
{
}
void AbstractEditorSupport::updateDocument()
{
++m_revision;

View File

@@ -44,7 +44,6 @@ class CPPTOOLS_EXPORT AbstractEditorSupport : public QObject
Q_OBJECT
public:
explicit AbstractEditorSupport(CppModelManager *modelmanager);
virtual ~AbstractEditorSupport();
/// \returns the contents, encoded as UTF-8
virtual QByteArray contents() const = 0;