summaryrefslogtreecommitdiffstats
path: root/qtinterface
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-02 13:43:00 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-02 13:43:00 -0600
commitff79a216418861697bdadba0ecb6e497bf77e894 (patch)
tree62c918635d714f3acd4357a491def649521ce469 /qtinterface
parent67ac950eb8660dc7f455640ffe77fd36b2fa44af (diff)
downloadtqtinterface-ff79a216418861697bdadba0ecb6e497bf77e894.tar.gz
tqtinterface-ff79a216418861697bdadba0ecb6e497bf77e894.zip
Fix FTBFS under tqt3
Diffstat (limited to 'qtinterface')
-rw-r--r--qtinterface/interface_tqt3/tqapplication.cpp12
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