summaryrefslogtreecommitdiff
authorzecke <zecke>2003-08-28 14:33:09 (UTC)
committer zecke <zecke>2003-08-28 14:33:09 (UTC)
commit2394427a5c34384131922fb6c2a1d35dee3e1197 (patch) (side-by-side diff)
treec70a5153f7a3b53e864226b521e5cef50855198b
parentf3c6caca7e96488ad9e1873e9c853f11b17a944e (diff)
downloadopie-2394427a5c34384131922fb6c2a1d35dee3e1197.zip
opie-2394427a5c34384131922fb6c2a1d35dee3e1197.tar.gz
opie-2394427a5c34384131922fb6c2a1d35dee3e1197.tar.bz2
Make it compile with Opie
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--core/launcher/documentlist.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/core/launcher/documentlist.cpp b/core/launcher/documentlist.cpp
index 033dd10..7f9366e 100644
--- a/core/launcher/documentlist.cpp
+++ b/core/launcher/documentlist.cpp
@@ -14,21 +14,22 @@
** See http://www.trolltech.com/gpl/ for GPL licensing information.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
**
**********************************************************************/
#include "documentlist.h"
#include "serverinterface.h"
+#include "launcherglobal.h"
#include <qtopia/mimetype.h>
#include <qtopia/resource.h>
#include <qtopia/global.h>
-#include <qtopia/categories.h>
+#include <qtopia/private/categories.h>
#include <qtopia/qpeapplication.h>
#include <qtopia/applnk.h>
#include <qtopia/storage.h>
#ifdef Q_WS_QWS
#include <qtopia/qcopenvelope_qws.h>
#endif
#include <qtimer.h>
@@ -258,17 +259,17 @@ void DocumentList::reloadDocLnks()
rescan();
}
void DocumentList::linkChanged( QString arg )
{
//qDebug( "linkchanged( %s )", arg.latin1() );
- if ( arg.isNull() || Global::isAppLnkFileName( arg ) ) {
+ if ( arg.isNull() || Opie::Global::isAppLnkFileName( arg ) ) {
reloadAppLnks();
} else {
const QList<DocLnk> &list = d->dls.children();
QListIterator<DocLnk> it( list );
while ( it.current() ) {
DocLnk *doc = it.current();
++it;