Debugger: Remove new watch window timer from public interface

Change-Id: Ic9d3df22d917e5644d6302a6af06aa8eadea8b5a
Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
hjk
2015-03-17 13:26:20 +01:00
parent f1ea415581
commit 9851484b31
7 changed files with 20 additions and 23 deletions

View File

@@ -38,10 +38,6 @@
#include <QPointer>
#include <QVector>
QT_BEGIN_NAMESPACE
class QTimer;
QT_END_NAMESPACE
namespace Debugger {
namespace Internal {
@@ -181,7 +177,7 @@ signals:
void itemIsExpanded(const QModelIndex &idx);
void inameIsExpanded(const QByteArray &iname);
void columnAdjustmentRequested();
void updateRequested();
void updateStarted();
void updateFinished();
};
@@ -248,8 +244,8 @@ public:
void removeItemByIName(const QByteArray &iname);
void removeAllData(bool includeInspectData = false);
void resetValueCache();
void updateRequested();
void updateFinished();
void notifyUpdateStarted();
void notifyUpdateFinished();
void purgeOutdatedItems(const QSet<QByteArray> &inames);
private:
@@ -264,7 +260,6 @@ private:
WatchModel *m_model; // Owned.
DebuggerEngine *m_engine; // Not owned.
SeparatedView *m_separatedView; // Owned.
QTimer *m_requestUpdateTimer; // Owned.
bool m_contentsValid;
bool m_resetLocationScheduled;