summaryrefslogtreecommitdiff
path: root/qt
authormickeyl <mickeyl>2003-06-03 14:38:09 (UTC)
committer mickeyl <mickeyl>2003-06-03 14:38:09 (UTC)
commit4e0c9efab5f3c73a1843e96983c9cd1894e44810 (patch) (unidiff)
tree8d885b0a0c08047f7cfb194c7f3bc6539e927f2c /qt
parentf80c2829f8660402df7a6d5667d6022f366cd44b (diff)
downloadopie-4e0c9efab5f3c73a1843e96983c9cd1894e44810.zip
opie-4e0c9efab5f3c73a1843e96983c9cd1894e44810.tar.gz
opie-4e0c9efab5f3c73a1843e96983c9cd1894e44810.tar.bz2
eliminate the non-tslib patch for the simpad.
simpad support now _needs_ tslib with Qt/Embedded.
Diffstat (limited to 'qt') (more/less context) (ignore whitespace changes)
-rw-r--r--qt/qte234-for-opie091-simpad.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/qt/qte234-for-opie091-simpad.patch b/qt/qte234-for-opie091-simpad.patch
index e4af4f7..5b892d4 100644
--- a/qt/qte234-for-opie091-simpad.patch
+++ b/qt/qte234-for-opie091-simpad.patch
@@ -1,29 +1,3 @@
1--- src/kernel/qwsmouse_qws.cpp.orig 2003-01-31 04:34:52.000000000 +0100
2+++ src/kernel/qwsmouse_qws.cpp 2003-03-10 12:26:40.000000000 +0100
3@@ -61,12 +61,14 @@
4 #endif
5
6 #if defined(QT_QWS_IPAQ)
7+#include <sys/time.h>
8 #define QT_QWS_IPAQ_RAW
9 typedef struct {
10 unsigned short pressure;
11 unsigned short x;
12 unsigned short y;
13 unsigned short pad;
14+ struct timeval stamp;
15 } TS_EVENT;
16 #elif defined(QT_QWS_SL5XXX)
17 #define QT_QWS_SL5XXX_RAW
18@@ -1241,7 +1243,7 @@
19 #if defined(QT_QWS_IPAQ) || defined(QT_QWS_SL5XXX)
20 #if defined(QT_QWS_IPAQ)
21 # ifdef QT_QWS_IPAQ_RAW
22- if ((mouseFD = open( "/dev/h3600_tsraw", O_RDONLY | O_NDELAY)) < 0) {
23+ if ((mouseFD = open( "/dev/touchscreen/ucb1x00", O_RDONLY | O_NONBLOCK /*O_NDELAY*/)) < 0) {
24 # else
25 if ((mouseFD = open( "/dev/h3600_ts", O_RDONLY | O_NDELAY)) < 0) {
26 # endif
27 --- src/kernel/qkeyboard_qws.cpp.origFri May 30 16:05:20 2003 1 --- src/kernel/qkeyboard_qws.cpp.origFri May 30 16:05:20 2003
28 +++ src/kernel/qkeyboard_qws.cppFri May 30 16:03:41 2003 2 +++ src/kernel/qkeyboard_qws.cppFri May 30 16:03:41 2003
29@@ -37,6 +37,7 @@ 3@@ -37,6 +37,7 @@