author | zecke <zecke> | 2004-10-16 22:31:18 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-10-16 22:31:18 (UTC) |
commit | 4a623a9afe68f8d2d2f9562cb5ab589c0023519c (patch) (side-by-side diff) | |
tree | 63cfeb0e784db5dae6c93596cd07b04217ab4a22 | |
parent | 1633552a8816eaa18b2b06da6573611b2636cee8 (diff) | |
download | opie-4a623a9afe68f8d2d2f9562cb5ab589c0023519c.zip opie-4a623a9afe68f8d2d2f9562cb5ab589c0023519c.tar.gz opie-4a623a9afe68f8d2d2f9562cb5ab589c0023519c.tar.bz2 |
-Remove debug output on appMessage
-Check for Application Pages in help/lang/execname/execname.html as
well. This is needed for qashmoney and could be used for the
other help pages as well
-rw-r--r-- | core/apps/helpbrowser/helpbrowser.cpp | 1 | ||||
-rw-r--r-- | core/apps/helpbrowser/magictextbrowser.cpp | 11 |
2 files changed, 9 insertions, 3 deletions
diff --git a/core/apps/helpbrowser/helpbrowser.cpp b/core/apps/helpbrowser/helpbrowser.cpp index cbb4059..4bd9565 100644 --- a/core/apps/helpbrowser/helpbrowser.cpp +++ b/core/apps/helpbrowser/helpbrowser.cpp @@ -120,3 +120,2 @@ void HelpBrowser::appMessage(const QCString& msg, const QByteArray& data) { - odebug << "reached appMessage" << oendl; if ( msg == "showFile(QString)" ) { diff --git a/core/apps/helpbrowser/magictextbrowser.cpp b/core/apps/helpbrowser/magictextbrowser.cpp index 80495c9..44bf19f 100644 --- a/core/apps/helpbrowser/magictextbrowser.cpp +++ b/core/apps/helpbrowser/magictextbrowser.cpp @@ -85,7 +85,14 @@ QString MagicTextBrowser::generateQpe(const QString& name) const { QString icon = lnk->icon(); - QString helpFile = lnk->exec()+".html"; + QString exec = lnk->exec(); + QString helpFile = exec+".html"; QStringList helpPath = Global::helpPath(); bool helpExists = FALSE; - for (QStringList::ConstIterator it=helpPath.begin(); it!=helpPath.end() && !helpExists; ++it) + for (QStringList::ConstIterator it=helpPath.begin(); it!=helpPath.end() && !helpExists; ++it) { helpExists = QFile::exists( *it + "/" + helpFile ); + + if( !helpExists && QFile::exists( *it + "/" + exec + "/" + helpFile ) ) { + helpFile = exec + "/" + helpFile; + helpExists = true; + } + } |