author | zecke <zecke> | 2002-04-22 16:57:17 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-04-22 16:57:17 (UTC) |
commit | cca7f8ae4f60ae9b6c704d200ab015233abdd4d7 (patch) (side-by-side diff) | |
tree | c472d8d52bb27811f6400cb35a61f84e2387df71 /library | |
parent | ed0b3a5518e741c0991c659b6b9ec9984e1ff2a6 (diff) | |
download | opie-cca7f8ae4f60ae9b6c704d200ab015233abdd4d7.zip opie-cca7f8ae4f60ae9b6c704d200ab015233abdd4d7.tar.gz opie-cca7f8ae4f60ae9b6c704d200ab015233abdd4d7.tar.bz2 |
First fix for not finding files anymore.
I'm going to the movies and then I'll fix
the launcher case....
-rw-r--r-- | library/global.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/global.cpp b/library/global.cpp index 5a28595..4f1cc38 100644 --- a/library/global.cpp +++ b/library/global.cpp @@ -40,51 +40,51 @@ #include <stdlib.h> #include <sys/stat.h> #include <sys/wait.h> #include <sys/types.h> #include <fcntl.h> #include <unistd.h> #include <qwindowsystem_qws.h> // for qwsServer #include <qdatetime.h> #include <qfile.h> namespace { // checks if the storage should be searched bool checkStorage(const QString &path ){ // this is a small Config replacement cause config is too limited -zecke QFile file(path ); if(!file.open(IO_ReadOnly ) ) return true; QByteArray array = file.readAll(); QStringList list = QStringList::split('\n', QString( array ) ); for(QStringList::Iterator it = list.begin(); it != list.end(); ++it ){ if( (*it).startsWith("autocheck = 0" ) ){ - return true; - }else if( (*it).startsWith("autocheck = 1" ) ){ return false; + }else if( (*it).startsWith("autocheck = 1" ) ){ + return true; } } return true; } } //#include "quickexec_p.h" class Emitter : public QObject { Q_OBJECT public: Emitter( QWidget* receiver, const QString& document ) { connect(this, SIGNAL(setDocument(const QString&)), receiver, SLOT(setDocument(const QString&))); emit setDocument(document); disconnect(this, SIGNAL(setDocument(const QString&)), receiver, SLOT(setDocument(const QString&))); } signals: void setDocument(const QString&); }; |