-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 @@ -38,27 +38,24 @@ FixIt::FixIt() : QObject() { "s0:24:respawn:/sbin/getty 9600 ttyS0" "#pd:5:respawn:/etc/sync/serialctl" "" "# Specify program to run on tty1" "1:2:respawn:/sbin/getty 9600 tty1" "ln:345:respawn:survive -l 6 /sbin/launch" "#qt:5:respawn:/sbin/qt" "" "# collie sp." "sy::respawn:/sbin/shsync\n"; } -FixIt::~FixIt() { -} - /* * the retail Zaurus is broken in many ways * one is that pppd is listening on our port... * we've to stop it from that and then do kill(SIGHUP,1); */ void FixIt::fixIt() { #ifndef EAST ::rename("/etc/inittab", QPEApplication::qpeDir() + "/etc/inittab" ); QFile file( "/etc/inittab" ); if ( file.open(IO_WriteOnly | IO_Raw ) ) { file.writeBlock(m_file,strlen(m_file) ); } 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 @@ -8,28 +8,24 @@ #include <qpe/qpeapplication.h> #include <sys/types.h> #include <stdio.h> #include <stdlib.h> #include <signal.h> /* * The Zaurus rom */ -class FixIt : public QObject { - - Q_OBJECT - +class FixIt { public: FixIt(); - ~FixIt(); void fixIt(); /* no real interested in implementing it */ void breakIt(); char* m_file; }; #endif 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 @@ -8,13 +8,13 @@ Logger::Logger() {} Logger::Logger(const QString fileName) { m_file.setName(fileName); m_file.open(IO_ReadWrite); } Logger::~Logger() { m_file.close(); } 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 @@ -7,13 +7,13 @@ class Logger { public: Logger(); Logger(const QString fileName); void append(QByteArray ar); ~Logger(); private: QFile m_file; }; -#endif
\ No newline at end of file +#endif |