summaryrefslogtreecommitdiffstats
path: root/src/kdesvn_events.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kdesvn_events.h')
-rw-r--r--src/kdesvn_events.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/kdesvn_events.h b/src/kdesvn_events.h
index 509125e..e8de055 100644
--- a/src/kdesvn_events.h
+++ b/src/kdesvn_events.h
@@ -1,17 +1,17 @@
#ifndef __KDESVN_EVENTS_H
#define __KDESVN_EVENTS_H
-#include <qevent.h>
+#include <tqevent.h>
#include "src/svnqt/svnqt_defines.hpp"
-class FillCacheStatusEvent:public QCustomEvent
+class FillCacheStatusEvent:public TQCustomEvent
{
public:
- FillCacheStatusEvent(Q_LLONG current,Q_LLONG max);
- Q_LLONG current()const{return m_current;}
- Q_LLONG max()const{return m_max;}
+ FillCacheStatusEvent(TQ_LLONG current,TQ_LLONG max);
+ TQ_LLONG current()const{return m_current;}
+ TQ_LLONG max()const{return m_max;}
private:
- Q_LLONG m_current,m_max;
+ TQ_LLONG m_current,m_max;
};
#endif