summaryrefslogtreecommitdiff
authorsandman <sandman>2002-06-16 01:26:15 (UTC)
committer sandman <sandman>2002-06-16 01:26:15 (UTC)
commite4d3c7c1aab2b54262aafdd655edbc78d21d5ac5 (patch) (unidiff)
tree22ced99fda4ec8a5fd9a8fc659c081009b87b82f
parent0675d8e8ea5f599af9f433e1e86b63953b26639d (diff)
downloadopie-e4d3c7c1aab2b54262aafdd655edbc78d21d5ac5.zip
opie-e4d3c7c1aab2b54262aafdd655edbc78d21d5ac5.tar.gz
opie-e4d3c7c1aab2b54262aafdd655edbc78d21d5ac5.tar.bz2
Yet another minor custom.h fix (no functional change - only for consistency)
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--library/power.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/power.cpp b/library/power.cpp
index 12b52ed..d10a865 100644
--- a/library/power.cpp
+++ b/library/power.cpp
@@ -7,33 +7,33 @@
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
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 20
21#include "power.h" 21#include "power.h"
22 22
23#ifdef QT_QWS_CUSTOM 23#if defined( QT_QWS_CUSTOM ) || defined( QT_QWS_IPAQ )
24#include "custom.h" 24#include "custom.h"
25#endif 25#endif
26 26
27#include <unistd.h> 27#include <unistd.h>
28#include <stdlib.h> 28#include <stdlib.h>
29#include <stdio.h> 29#include <stdio.h>
30#include <fcntl.h> 30#include <fcntl.h>
31#include <sys/ioctl.h> 31#include <sys/ioctl.h>
32 32
33#ifdef QT_QWS_IPAQ_NO_APM 33#ifdef QT_QWS_IPAQ_NO_APM
34#include <linux/h3600_ts.h> 34#include <linux/h3600_ts.h>
35#endif 35#endif
36 36
37PowerStatusManager *PowerStatusManager::powerManager = 0; 37PowerStatusManager *PowerStatusManager::powerManager = 0;
38PowerStatus *PowerStatusManager::ps = 0; 38PowerStatus *PowerStatusManager::ps = 0;
39 39