-rw-r--r-- | noncore/apps/opie-console/fixit.cpp | 3 | ||||
-rw-r--r-- | noncore/apps/opie-console/fixit.h | 6 | ||||
-rw-r--r-- | noncore/apps/opie-console/logger.cpp | 2 | ||||
-rw-r--r-- | noncore/apps/opie-console/logger.h | 2 |
4 files changed, 3 insertions, 10 deletions
diff --git a/noncore/apps/opie-console/fixit.cpp b/noncore/apps/opie-console/fixit.cpp index c14e35e..5ac7673 100644 --- a/noncore/apps/opie-console/fixit.cpp +++ b/noncore/apps/opie-console/fixit.cpp | |||
@@ -46,11 +46,8 @@ FixIt::FixIt() : QObject() { | |||
46 | "# collie sp." | 46 | "# collie sp." |
47 | "sy::respawn:/sbin/shsync\n"; | 47 | "sy::respawn:/sbin/shsync\n"; |
48 | } | 48 | } |
49 | 49 | ||
50 | FixIt::~FixIt() { | ||
51 | } | ||
52 | |||
53 | /* | 50 | /* |
54 | * the retail Zaurus is broken in many ways | 51 | * the retail Zaurus is broken in many ways |
55 | * one is that pppd is listening on our port... | 52 | * one is that pppd is listening on our port... |
56 | * we've to stop it from that and then do kill(SIGHUP,1); | 53 | * we've to stop it from that and then do kill(SIGHUP,1); |
diff --git a/noncore/apps/opie-console/fixit.h b/noncore/apps/opie-console/fixit.h index c9188cf..5328616 100644 --- a/noncore/apps/opie-console/fixit.h +++ b/noncore/apps/opie-console/fixit.h | |||
@@ -16,15 +16,11 @@ | |||
16 | 16 | ||
17 | /* | 17 | /* |
18 | * The Zaurus rom | 18 | * The Zaurus rom |
19 | */ | 19 | */ |
20 | class FixIt : public QObject { | 20 | class FixIt { |
21 | |||
22 | Q_OBJECT | ||
23 | |||
24 | public: | 21 | public: |
25 | FixIt(); | 22 | FixIt(); |
26 | ~FixIt(); | ||
27 | void fixIt(); | 23 | void fixIt(); |
28 | /* no real interested in implementing it */ | 24 | /* no real interested in implementing it */ |
29 | void breakIt(); | 25 | void breakIt(); |
30 | char* m_file; | 26 | char* m_file; |
diff --git a/noncore/apps/opie-console/logger.cpp b/noncore/apps/opie-console/logger.cpp index 56557f3..6620faf 100644 --- a/noncore/apps/opie-console/logger.cpp +++ b/noncore/apps/opie-console/logger.cpp | |||
@@ -16,5 +16,5 @@ Logger::~Logger() { | |||
16 | } | 16 | } |
17 | 17 | ||
18 | void Logger::append(QByteArray ar) { | 18 | void Logger::append(QByteArray ar) { |
19 | m_file.writeBlock(ar); | 19 | m_file.writeBlock(ar); |
20 | } \ No newline at end of file | 20 | } |
diff --git a/noncore/apps/opie-console/logger.h b/noncore/apps/opie-console/logger.h index cdc9f68..a2583eb 100644 --- a/noncore/apps/opie-console/logger.h +++ b/noncore/apps/opie-console/logger.h | |||
@@ -15,5 +15,5 @@ public: | |||
15 | private: | 15 | private: |
16 | QFile m_file; | 16 | QFile m_file; |
17 | }; | 17 | }; |
18 | 18 | ||
19 | #endif \ No newline at end of file | 19 | #endif |