summaryrefslogtreecommitdiffstats
path: root/krdc/events.h
diff options
context:
space:
mode:
Diffstat (limited to 'krdc/events.h')
-rw-r--r--krdc/events.h10
1 files changed, 5 insertions, 5 deletions
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;