Fix FTBFS under tqt3

pull/1/head
Timothy Pearson 12 years ago
parent 67ac950eb8
commit ff79a21641

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

Loading…
Cancel
Save