diff options
author | Christian Kamm <christian.d.kamm@nokia.com> | 2011-08-22 13:41:19 +0200 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@nokia.com> | 2011-08-22 13:42:40 +0200 |
commit | fb91b88b9cd5499499d7530e7b39dd65dbe15dd3 (patch) | |
tree | 0024b7127ddcea65387e51e10a3d1d72467b7fc7 /src/plugins/texteditor/refactoringchanges.cpp | |
parent | 749534ea766fb86af8e6deeb17e2900b1eb43a58 (diff) | |
download | qt-creator-fb91b88b9cd5499499d7530e7b39dd65dbe15dd3.tar.gz |
RefactoringChanges: Add missing virtual destructor.
Change-Id: I6237e7c3a8c1e4a1a223c6f1a66c4e866406ca2b
Reviewed-on: http://codereview.qt.nokia.com/3312
Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
Diffstat (limited to 'src/plugins/texteditor/refactoringchanges.cpp')
-rw-r--r-- | src/plugins/texteditor/refactoringchanges.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/texteditor/refactoringchanges.cpp b/src/plugins/texteditor/refactoringchanges.cpp index b81ff89494..811be2ba41 100644 --- a/src/plugins/texteditor/refactoringchanges.cpp +++ b/src/plugins/texteditor/refactoringchanges.cpp @@ -362,6 +362,9 @@ void RefactoringFile::fileChanged() m_data->fileChanged(m_fileName); } +RefactoringChangesData::~RefactoringChangesData() +{} + void RefactoringChangesData::indentSelection(const QTextCursor &, const QString &, const BaseTextEditorWidget *) const { qWarning() << Q_FUNC_INFO << "not implemented"; |