From 808e453c56036211f57482ed847d54aca01bba68 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 15 Dec 2011 15:49:40 -0600 Subject: Rename a number of old tq methods that are no longer tq specific --- krdc/events.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'krdc/events.h') diff --git a/krdc/events.h b/krdc/events.h index d9856449..5100a23c 100644 --- a/krdc/events.h +++ b/krdc/events.h @@ -33,10 +33,10 @@ * REMOTE_VIEW_DISCONNECTING * @li You can move from REMOTE_VIEW_DISCONNECTED to REMOTE_VIEW_CONNECTING * - * @ref KRemoteView::settqStatus() will follow this rules for you. + * @ref KRemoteView::setStatus() will follow this rules for you. * (If you add/remove a state here, you must adapt it) */ -enum RemoteViewtqStatus { +enum RemoteViewStatus { REMOTE_VIEW_CONNECTING = 0, REMOTE_VIEW_AUTHENTICATING = 1, REMOTE_VIEW_PREPARING = 2, @@ -78,13 +78,13 @@ const int StatusChangeEventType = 41002; class StatusChangeEvent : public TQCustomEvent { private: - RemoteViewtqStatus m_status; + RemoteViewStatus m_status; public: - StatusChangeEvent(RemoteViewtqStatus s) : + StatusChangeEvent(RemoteViewStatus s) : TQCustomEvent(StatusChangeEventType), m_status(s) {}; - RemoteViewtqStatus status() const { return m_status; }; + RemoteViewStatus status() const { return m_status; }; }; const int PasswordRequiredEventType = 41003; -- cgit v1.2.1