diff options
author | Timothy Pearson <[email protected]> | 2011-11-16 16:05:53 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-11-16 16:05:53 -0600 |
commit | 2a84b711d4c9c28fd6e03457311fd05203318d24 (patch) | |
tree | c825e162ec40405187fd4892b08e8e036a5db308 /src/tdesvn_events.h | |
parent | 6cd1f99df4d8a5385335e0148fb0d4e424631e6b (diff) | |
download | tdesvn-2a84b711d4c9c28fd6e03457311fd05203318d24.tar.gz tdesvn-2a84b711d4c9c28fd6e03457311fd05203318d24.zip |
Finish rename from prior commit
Diffstat (limited to 'src/tdesvn_events.h')
-rw-r--r-- | src/tdesvn_events.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/tdesvn_events.h b/src/tdesvn_events.h new file mode 100644 index 0000000..e8de055 --- /dev/null +++ b/src/tdesvn_events.h @@ -0,0 +1,17 @@ +#ifndef __KDESVN_EVENTS_H +#define __KDESVN_EVENTS_H + +#include <tqevent.h> +#include "src/svnqt/svnqt_defines.hpp" + +class FillCacheStatusEvent:public TQCustomEvent +{ + public: + FillCacheStatusEvent(TQ_LLONG current,TQ_LLONG max); + TQ_LLONG current()const{return m_current;} + TQ_LLONG max()const{return m_max;} + private: + TQ_LLONG m_current,m_max; +}; + +#endif |