author | zecke <zecke> | 2004-10-10 15:15:06 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-10-10 15:15:06 (UTC) |
commit | 44f716e0f0aaf35869558a805e0fa7791996897a (patch) (side-by-side diff) | |
tree | b050c5bb0ebb1739e1d28d8d7ba365005de831bf | |
parent | fc76111d51817116376eeb417bd83fbf4e0b77f1 (diff) | |
download | opie-44f716e0f0aaf35869558a805e0fa7791996897a.zip opie-44f716e0f0aaf35869558a805e0fa7791996897a.tar.gz opie-44f716e0f0aaf35869558a805e0fa7791996897a.tar.bz2 |
FixIt doesn't have any signals and slots so don't make it a QObject
this fixes linking of it.
Logger: Add new lines to fix compiler warnings
-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 @@ -48,7 +48,4 @@ FixIt::FixIt() : QObject() { } -FixIt::~FixIt() { -} - /* * the retail Zaurus is broken in many ways 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 @@ -18,11 +18,7 @@ * The Zaurus rom */ -class FixIt : public QObject { - - Q_OBJECT - +class FixIt { public: FixIt(); - ~FixIt(); void fixIt(); /* no real interested in implementing it */ 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 @@ -18,3 +18,3 @@ Logger::~Logger() { void Logger::append(QByteArray ar) { m_file.writeBlock(ar); -}
\ No newline at end of file +} 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 @@ -17,3 +17,3 @@ private: }; -#endif
\ No newline at end of file +#endif |