diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-03 21:25:13 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-03 21:25:13 +0000 |
commit | ec9d21ce2256b58305528c51569af0d23d086128 (patch) | |
tree | 5ee681f6a096db2aaacb1158b948e2995ef7fff4 | |
parent | 47f4f8103958a6ca18aaa775ecbdb19b94138402 (diff) | |
download | tqtinterface-ec9d21ce2256b58305528c51569af0d23d086128.tar.gz tqtinterface-ec9d21ce2256b58305528c51569af0d23d086128.zip |
Fix tqtinterface FTBFS
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/tqtinterface@1226993 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r-- | qtinterface/tqapplication.h | 7 | ||||
-rw-r--r-- | qtinterface/tqt.h.cmake | 7 |
2 files changed, 6 insertions, 8 deletions
diff --git a/qtinterface/tqapplication.h b/qtinterface/tqapplication.h index 9d9b7b7..4bd9404 100644 --- a/qtinterface/tqapplication.h +++ b/qtinterface/tqapplication.h @@ -32,6 +32,11 @@ Boston, MA 02110-1301, USA. #include <qapplication.h> +void set_tqt_x_time(Time x); +Time get_tqt_x_time(void); +void set_tqt_x_user_time(Time x); +Time get_tqt_x_user_time(void); + #endif // USE_QT3 #ifdef USE_QT4 @@ -43,4 +48,4 @@ Boston, MA 02110-1301, USA. #endif // USE_QT4 -#endif /* TQAPPLICATION_H */
\ No newline at end of file +#endif /* TQAPPLICATION_H */ diff --git a/qtinterface/tqt.h.cmake b/qtinterface/tqt.h.cmake index a36857b..4028aba 100644 --- a/qtinterface/tqt.h.cmake +++ b/qtinterface/tqt.h.cmake @@ -19,8 +19,6 @@ Boston, MA 02110-1301, USA. */ -#include <time.h> - #ifndef TQT_H #define TQT_H @@ -1006,11 +1004,6 @@ Boston, MA 02110-1301, USA. #define tqwhatsThisCursor Qt::whatsThisCursor #define tqbusyCursor Qt::busyCursor -void set_tqt_x_time(Time x); -Time get_tqt_x_time(void); -void set_tqt_x_user_time(Time x); -Time get_tqt_x_user_time(void); - #define SET_QT_X_TIME(x) set_tqt_x_time(x) #define GET_QT_X_TIME(x) get_tqt_x_time() #define SET_QT_X_USER_TIME(x) set_tqt_x_time(x) |