diff options
author | Timothy Pearson <[email protected]> | 2012-03-02 13:43:00 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-02 13:43:00 -0600 |
commit | ff79a216418861697bdadba0ecb6e497bf77e894 (patch) | |
tree | 62c918635d714f3acd4357a491def649521ce469 /qtinterface/interface_tqt3 | |
parent | 67ac950eb8660dc7f455640ffe77fd36b2fa44af (diff) | |
download | tqtinterface-ff79a216418861697bdadba0ecb6e497bf77e894.tar.gz tqtinterface-ff79a216418861697bdadba0ecb6e497bf77e894.zip |
Fix FTBFS under tqt3
Diffstat (limited to 'qtinterface/interface_tqt3')
-rw-r--r-- | qtinterface/interface_tqt3/tqapplication.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/qtinterface/interface_tqt3/tqapplication.cpp b/qtinterface/interface_tqt3/tqapplication.cpp index d96d9fc..dbeef36 100644 --- a/qtinterface/interface_tqt3/tqapplication.cpp +++ b/qtinterface/interface_tqt3/tqapplication.cpp @@ -25,23 +25,23 @@ Boston, MA 02110-1301, USA. #include <X11/X.h> #ifdef USE_QT3 -extern Time qt_x_time; -extern Time qt_x_user_time; +extern Time tqt_x_time; +extern Time tqt_x_user_time; void set_tqt_x_time(unsigned long x) { - qt_x_time = x; + tqt_x_time = x; } unsigned long get_tqt_x_time(void) { - return qt_x_time; + return tqt_x_time; } 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) { - return qt_x_user_time; + return tqt_x_user_time; } #endif |