git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/tqtinterface@1226996 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
v3.5.13-sru
tpearson 13 years ago
parent ec9d21ce22
commit 7deab5d975

@ -22,23 +22,25 @@ Boston, MA 02110-1301, USA.
#include <tqt.h>
#include <tqapplication.h>
#include <X11/X.h>
#ifdef USE_QT3
extern Time qt_x_time;
extern Time qt_x_user_time;
void set_tqt_x_time(Time x) {
void set_tqt_x_time(unsigned long x) {
qt_x_time = x;
}
Time get_tqt_x_time(void) {
unsigned long get_tqt_x_time(void) {
return qt_x_time;
}
void set_tqt_x_user_time(Time x) {
void set_tqt_x_user_time(unsigned long x) {
qt_x_user_time = x;
}
Time get_tqt_x_user_time(void) {
unsigned long get_tqt_x_user_time(void) {
return qt_x_user_time;
}
#endif

@ -32,10 +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);
// X11/X.h defines Time as unsigned long
void set_tqt_x_time(unsigned long x);
unsigned long get_tqt_x_time(void);
void set_tqt_x_user_time(unsigned long x);
unsigned long get_tqt_x_user_time(void);
#endif // USE_QT3

Loading…
Cancel
Save