aboutsummaryrefslogtreecommitdiffstats
path: root/src/declarative/debugger/qdeclarativedebugclient_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/declarative/debugger/qdeclarativedebugclient_p.h')
-rw-r--r--src/declarative/debugger/qdeclarativedebugclient_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/declarative/debugger/qdeclarativedebugclient_p.h b/src/declarative/debugger/qdeclarativedebugclient_p.h
index ff4f88f408..93c5be9e44 100644
--- a/src/declarative/debugger/qdeclarativedebugclient_p.h
+++ b/src/declarative/debugger/qdeclarativedebugclient_p.h
@@ -104,19 +104,19 @@ class Q_DECLARATIVE_PRIVATE_EXPORT QDeclarativeDebugClient : public QObject
Q_DISABLE_COPY(QDeclarativeDebugClient)
public:
- enum Status { NotConnected, Unavailable, Enabled };
+ enum State { NotConnected, Unavailable, Enabled };
QDeclarativeDebugClient(const QString &, QDeclarativeDebugConnection *parent);
~QDeclarativeDebugClient();
QString name() const;
float serviceVersion() const;
- Status status() const;
+ State state() const;
virtual void sendMessage(const QByteArray &);
protected:
- virtual void statusChanged(Status);
+ virtual void stateChanged(State);
virtual void messageReceived(const QByteArray &);
private: