diff options
author | Christian Stenger <christian.stenger@theqtcompany.com> | 2015-08-19 09:53:38 +0200 |
---|---|---|
committer | Christian Stenger <christian.stenger@theqtcompany.com> | 2015-08-19 13:32:39 +0300 |
commit | cc4ecb36a82343b22e4853b6091f2a64a6fd4683 (patch) | |
tree | 735642f7ca67ff494d0ef100b77a8fa83580415f | |
parent | 20f050721b80af40f34a611379e7d0f59c098c97 (diff) | |
download | qt-creator-cc4ecb36a82343b22e4853b6091f2a64a6fd4683.tar.gz |
Remove unused code
Change-Id: If90c6f9f1a33242ef2a33447cf4cff0b706bc0ea
Reviewed-by: Niels Weber <niels.weber@theqtcompany.com>
-rw-r--r-- | plugins/autotest/testresultdelegate.cpp | 5 | ||||
-rw-r--r-- | plugins/autotest/testresultdelegate.h | 4 |
2 files changed, 0 insertions, 9 deletions
diff --git a/plugins/autotest/testresultdelegate.cpp b/plugins/autotest/testresultdelegate.cpp index 5e37c64955..57dc2de847 100644 --- a/plugins/autotest/testresultdelegate.cpp +++ b/plugins/autotest/testresultdelegate.cpp @@ -269,11 +269,6 @@ QSize TestResultDelegate::sizeHint(const QStyleOptionViewItem &option, const QMo return s; } -void TestResultDelegate::emitSizeHintChanged(const QModelIndex &index) -{ - emit sizeHintChanged(index); -} - void TestResultDelegate::currentChanged(const QModelIndex ¤t, const QModelIndex &previous) { emit sizeHintChanged(current); diff --git a/plugins/autotest/testresultdelegate.h b/plugins/autotest/testresultdelegate.h index 8bc5d58ad8..0b837ed2b2 100644 --- a/plugins/autotest/testresultdelegate.h +++ b/plugins/autotest/testresultdelegate.h @@ -37,10 +37,6 @@ public: void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const; QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const; - void emitSizeHintChanged(const QModelIndex &index); - -signals: - public slots: void currentChanged(const QModelIndex ¤t, const QModelIndex &previous); |