summaryrefslogtreecommitdiff
path: root/core/tools/quicklauncher/dropins.h
Side-by-side diff
Diffstat (limited to 'core/tools/quicklauncher/dropins.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/tools/quicklauncher/dropins.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/core/tools/quicklauncher/dropins.h b/core/tools/quicklauncher/dropins.h
index 3e2b5fd..7acace9 100644
--- a/core/tools/quicklauncher/dropins.h
+++ b/core/tools/quicklauncher/dropins.h
@@ -1,25 +1,25 @@
#include <qstring.h>
#include <qtopia/qcom.h>
#include <qtopia/qlibrary.h>
#include <qtopia/applicationinterface.h>
#include <qtopia/resource.h>
-#include <opie/owait.h>
+#include <opie2/owait.h>
#include <qmetaobject.h>
#include <qmap.h>
-namespace Opie {
+namespace QuickPrivate {
struct PluginLoader {
PluginLoader( const char* ) {
}
QRESULT queryInterface( const QString& app, const QUuid&, QUnknownInterface** );
void releaseInterface( QUnknownInterface* );
QMap<QUnknownInterface*, QLibrary*> libs;
};
/*
* We can skip installing a Translator here because Opies QPEApplication
@@ -57,14 +57,12 @@ namespace Opie {
}
void PluginLoader::releaseInterface( QUnknownInterface* iface ) {
if ( libs.contains( iface ) ) {
iface->release();
delete libs[iface];
libs.remove( iface ); // we only handle pointers so even if the object is not valid the address-space is
}
}
}
-/* small hack ;) */
-using namespace Opie;