author | mickeyl <mickeyl> | 2004-05-14 15:47:06 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-05-14 15:47:06 (UTC) |
commit | 3378aa3bfa5fc0e9e664ae5d3800107c790dfc5a (patch) (unidiff) | |
tree | 1d7ce18cc0e543d8c07d08ec3b63734fe73f61a4 | |
parent | a9c907c218d106727ad3879a125c77ae7900635f (diff) | |
download | opie-3378aa3bfa5fc0e9e664ae5d3800107c790dfc5a.zip opie-3378aa3bfa5fc0e9e664ae5d3800107c790dfc5a.tar.gz opie-3378aa3bfa5fc0e9e664ae5d3800107c790dfc5a.tar.bz2 |
CLEANUP: Don't include header files via relative paths
Note: Remember to rm stamp-headers
-rw-r--r-- | Rules.make | 2 | ||||
-rw-r--r-- | inputmethods/dvorak/dvorak.h | 4 | ||||
-rw-r--r-- | inputmethods/keyboard/keyboard.h | 4 | ||||
-rw-r--r-- | inputmethods/multikey/keyboard.h | 4 |
4 files changed, 8 insertions, 6 deletions
@@ -170,12 +170,14 @@ endif | |||
170 | ( cd include/opie2 && ln -sf ../../libopie2/opieui/fileselector/*.h .; ) | 170 | ( cd include/opie2 && ln -sf ../../libopie2/opieui/fileselector/*.h .; ) |
171 | ( cd include/opie2 && ln -sf ../../libopie2/opieui/big-screen/*.h .; ) | 171 | ( cd include/opie2 && ln -sf ../../libopie2/opieui/big-screen/*.h .; ) |
172 | # auxilliary libraries | 172 | # auxilliary libraries |
173 | ( cd include/opie2 && ln -sf ../../libqtaux/*.h .; ) | 173 | ( cd include/opie2 && ln -sf ../../libqtaux/*.h .; ) |
174 | ( cd include/sl && ln -sf ../../libslcompat/*.h .; ) | 174 | ( cd include/sl && ln -sf ../../libslcompat/*.h .; ) |
175 | ( cd include/ && ln -sf ../noncore/net/ftplib/*.h .; ) | 175 | ( cd include/ && ln -sf ../noncore/net/ftplib/*.h .; ) |
176 | ( cd include/ && ln -sf ../inputmethods/pickboard/pickboardcfg.h .; ) | ||
177 | ( cd include/ && ln -sf ../inputmethods/pickboard/pickboardpicks.h .; ) | ||
176 | # all | 178 | # all |
177 | ifeq ($(CONFIG_LIBOPIE),y) | 179 | ifeq ($(CONFIG_LIBOPIE),y) |
178 | ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ | 180 | ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ |
179 | ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) | 181 | ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) |
180 | endif | 182 | endif |
181 | ( cd include/opie2; for generatedHeader in `cd ../../libopie2/opieui; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ | 183 | ( cd include/opie2; for generatedHeader in `cd ../../libopie2/opieui; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ |
diff --git a/inputmethods/dvorak/dvorak.h b/inputmethods/dvorak/dvorak.h index 216b5e5..758e181 100644 --- a/inputmethods/dvorak/dvorak.h +++ b/inputmethods/dvorak/dvorak.h | |||
@@ -15,14 +15,14 @@ | |||
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | #include <qframe.h> | 20 | #include <qframe.h> |
21 | #include "../pickboard/pickboardcfg.h" | 21 | #include <pickboardcfg.h> |
22 | #include "../pickboard/pickboardpicks.h" | 22 | #include <pickboardpicks.h> |
23 | 23 | ||
24 | class QTimer; | 24 | class QTimer; |
25 | 25 | ||
26 | namespace Dvorak | 26 | namespace Dvorak |
27 | { | 27 | { |
28 | 28 | ||
diff --git a/inputmethods/keyboard/keyboard.h b/inputmethods/keyboard/keyboard.h index cc7f3f5..82588f0 100644 --- a/inputmethods/keyboard/keyboard.h +++ b/inputmethods/keyboard/keyboard.h | |||
@@ -15,14 +15,14 @@ | |||
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | #include <qframe.h> | 20 | #include <qframe.h> |
21 | #include "../pickboard/pickboardcfg.h" | 21 | #include <pickboardcfg.h> |
22 | #include "../pickboard/pickboardpicks.h" | 22 | #include <pickboardpicks.h> |
23 | 23 | ||
24 | class QTimer; | 24 | class QTimer; |
25 | 25 | ||
26 | namespace KeyboardInput | 26 | namespace KeyboardInput |
27 | { | 27 | { |
28 | 28 | ||
diff --git a/inputmethods/multikey/keyboard.h b/inputmethods/multikey/keyboard.h index 0b56988..77bf718 100644 --- a/inputmethods/multikey/keyboard.h +++ b/inputmethods/multikey/keyboard.h | |||
@@ -16,14 +16,14 @@ | |||
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | #include <qframe.h> | 20 | #include <qframe.h> |
21 | #include <qmap.h> | 21 | #include <qmap.h> |
22 | #include "../pickboard/pickboardcfg.h" | 22 | #include <pickboardcfg.h> |
23 | #include "../pickboard/pickboardpicks.h" | 23 | #include <pickboardpicks.h> |
24 | #include "configdlg.h" | 24 | #include "configdlg.h" |
25 | 25 | ||
26 | class QTimer; | 26 | class QTimer; |
27 | 27 | ||
28 | namespace MultiKey | 28 | namespace MultiKey |
29 | { | 29 | { |