author | zecke <zecke> | 2003-08-27 13:03:26 (UTC) |
---|---|---|
committer | zecke <zecke> | 2003-08-27 13:03:26 (UTC) |
commit | 2635bf400cb58c11f48477150d6fc4337de12fb0 (patch) (unidiff) | |
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 { | |||
31 | 31 | ||
32 | // Below lines from TT then mine again | 32 | // Below lines from TT then mine again |
33 | QString name = libFile; | 33 | QString name = libFile; |
34 | if ( libFile.findRev(".so") == (int)libFile.length()-3 ) { | 34 | if ( libFile.findRev(".so") == (int)libFile.length()-3 ) { |
35 | name = libFile.left( libFile.length()-3 ); | 35 | name = libFile.left( libFile.length()-3 ); |
36 | if ( name.find( "lib" ) == 0 ) | 36 | if ( name.find( "lib" ) == 0 ) |
37 | name = name.mid( 3 ); | 37 | name = name.mid( 3 ); |
38 | } | 38 | } |
39 | QString path = QPEApplication::qpeDir() + "/plugins/applications/lib"+name+".so"; | 39 | QString path = QPEApplication::qpeDir() + "/plugins/application/lib"+name+".so"; |
40 | 40 | ||
41 | QLibrary *lib = new QLibrary( path ); | 41 | QLibrary *lib = new QLibrary( path ); |
42 | if ( lib->queryInterface( uuid, iface ) == QS_OK && iface ) { | 42 | if ( lib->queryInterface( uuid, iface ) == QS_OK && iface ) { |
43 | libs.insert( *iface, lib ); | 43 | libs.insert( *iface, lib ); |
44 | res = QS_OK; | 44 | res = QS_OK; |
45 | } | 45 | } |
46 | 46 | ||
47 | return res; | 47 | 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 ) | |||
3 | # make install | 3 | # make install |
4 | 4 | ||
5 | # base opie install path | 5 | # base opie install path |
6 | prefix = /opt/QtPalmtop | 6 | prefix = /opt/QtPalmtop |
7 | 7 | ||
8 | 8 | ||
9 | contains( CONFIG, quick-app-lib ) { | 9 | contains( CONFIG, quick-app-lib ) { |
10 | TEMPLATE = lib | 10 | TEMPLATE = lib |
11 | DESTDIR = $(OPIEDIR)/plugins/applications | 11 | DESTDIR = $(OPIEDIR)/plugins/application |
12 | DEFINES += OPIE_APP_INTERFACE | 12 | DEFINES += OPIE_APP_INTERFACE |
13 | } | 13 | } |
14 | contains ( CONFIG, quick-app-bin ) { | 14 | contains ( CONFIG, quick-app-bin ) { |
15 | TEMPLATE = app | 15 | TEMPLATE = app |
16 | DESTDIR = $(OPIEDIR)/bin | 16 | DESTDIR = $(OPIEDIR)/bin |
17 | DEFINES -= OPIE_APP_INTERFACE | 17 | DEFINES -= OPIE_APP_INTERFACE |
18 | } | 18 | } |
19 | 19 | ||