summaryrefslogtreecommitdiff
path: root/library/qpedecoration_qws.cpp
authorsandman <sandman>2002-10-05 17:37:22 (UTC)
committer sandman <sandman>2002-10-05 17:37:22 (UTC)
commitfbe0200df248c5b6677483c4f42a801002bb151e (patch) (unidiff)
tree8b5b3d696569e9aa5336890b14bacb9404494124 /library/qpedecoration_qws.cpp
parent299a2e9b83f6b7109ce92ca35021301fe9276c85 (diff)
downloadopie-fbe0200df248c5b6677483c4f42a801002bb151e.zip
opie-fbe0200df248c5b6677483c4f42a801002bb151e.tar.gz
opie-fbe0200df248c5b6677483c4f42a801002bb151e.tar.bz2
The control files lacked a \n at the end - this screwed the packages file
Diffstat (limited to 'library/qpedecoration_qws.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--library/qpedecoration_qws.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/library/qpedecoration_qws.cpp b/library/qpedecoration_qws.cpp
index 708dd23..214c721 100644
--- a/library/qpedecoration_qws.cpp
+++ b/library/qpedecoration_qws.cpp
@@ -500,8 +500,10 @@ QPEDecoration::QPEDecoration()
500 helpFile = QString(qApp->argv()[0]) + ".html"; 500 helpFile = QString(qApp->argv()[0]) + ".html";
501 QStringList helpPath = Global::helpPath(); 501 QStringList helpPath = Global::helpPath();
502 helpExists = FALSE; 502 helpExists = FALSE;
503 for (QStringList::ConstIterator it=helpPath.begin(); it!=helpPath.end() && !helpExists; ++it) 503 for (QStringList::ConstIterator it=helpPath.begin(); it!=helpPath.end() && !helpExists; ++it) {
504 helpExists = QFile::exists( *it + "/" + helpFile ); 504 helpExists = QFile::exists( *it + "/" + helpFile );
505 qDebug ( "Checking %s/%s for help: %d", (*it).latin1(), helpFile.latin1(),helpExists);
506 }
505 qpeManager = new QPEManager( this ); 507 qpeManager = new QPEManager( this );
506} 508}
507 509
@@ -530,8 +532,9 @@ QPEDecoration::QPEDecoration( const QString &plugin )
530 helpFile = QString(qApp->argv()[0]) + ".html"; 532 helpFile = QString(qApp->argv()[0]) + ".html";
531 QStringList helpPath = Global::helpPath(); 533 QStringList helpPath = Global::helpPath();
532 helpExists = FALSE; 534 helpExists = FALSE;
533 for (QStringList::ConstIterator it=helpPath.begin(); it!=helpPath.end() && !helpExists; ++it) 535 for (QStringList::ConstIterator it=helpPath.begin(); it!=helpPath.end() && !helpExists; ++it) {
534 helpExists = QFile::exists( *it + "/" + helpFile ); 536 helpExists = QFile::exists( *it + "/" + helpFile );
537 qDebug ( "Checking %s/%s for help: %d", (*it).latin1(), helpFile.latin1(),helpExists); }
535 qpeManager = new QPEManager( this ); 538 qpeManager = new QPEManager( this );
536} 539}
537 540