author | zecke <zecke> | 2003-08-27 13:03:26 (UTC) |
---|---|---|
committer | zecke <zecke> | 2003-08-27 13:03:26 (UTC) |
commit | 2635bf400cb58c11f48477150d6fc4337de12fb0 (patch) (side-by-side diff) | |
tree | c9fd9cc0401337e7329dd104fc1e7d3fcef4e93d | |
parent | 38538a71248a16ff964870909965cf233c796bf5 (diff) | |
download | opie-2635bf400cb58c11f48477150d6fc4337de12fb0.zip opie-2635bf400cb58c11f48477150d6fc4337de12fb0.tar.gz opie-2635bf400cb58c11f48477150d6fc4337de12fb0.tar.bz2 |
Fix path
it's application not applications
-rw-r--r-- | core/tools/quicklauncher/dropins.h | 2 | ||||
-rw-r--r-- | include.pro | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/tools/quicklauncher/dropins.h b/core/tools/quicklauncher/dropins.h index ac8d8cc..fe43ec2 100644 --- a/core/tools/quicklauncher/dropins.h +++ b/core/tools/quicklauncher/dropins.h @@ -31,17 +31,17 @@ namespace Opie { // Below lines from TT then mine again QString name = libFile; if ( libFile.findRev(".so") == (int)libFile.length()-3 ) { name = libFile.left( libFile.length()-3 ); if ( name.find( "lib" ) == 0 ) name = name.mid( 3 ); } - QString path = QPEApplication::qpeDir() + "/plugins/applications/lib"+name+".so"; + QString path = QPEApplication::qpeDir() + "/plugins/application/lib"+name+".so"; QLibrary *lib = new QLibrary( path ); if ( lib->queryInterface( uuid, iface ) == QS_OK && iface ) { libs.insert( *iface, lib ); res = QS_OK; } return res; diff --git a/include.pro b/include.pro index c70c4d5..69fd894 100644 --- a/include.pro +++ b/include.pro @@ -3,17 +3,17 @@ include ( $(OPIEDIR)/gen.pro ) # make install # base opie install path prefix = /opt/QtPalmtop contains( CONFIG, quick-app-lib ) { TEMPLATE = lib - DESTDIR = $(OPIEDIR)/plugins/applications + DESTDIR = $(OPIEDIR)/plugins/application DEFINES += OPIE_APP_INTERFACE } contains ( CONFIG, quick-app-bin ) { TEMPLATE = app DESTDIR = $(OPIEDIR)/bin DEFINES -= OPIE_APP_INTERFACE } |