summaryrefslogtreecommitdiff
authoreilers <eilers>2003-11-17 16:02:31 (UTC)
committer eilers <eilers>2003-11-17 16:02:31 (UTC)
commit74a1afb21424a4f69c7a01fda2cc517daf69fd82 (patch) (unidiff)
treeff509880b5c14281bbb2bb05a6519bf081612525
parente206333876a37ae188fe2889bb079158611cebe3 (diff)
downloadopie-74a1afb21424a4f69c7a01fda2cc517daf69fd82.zip
opie-74a1afb21424a4f69c7a01fda2cc517daf69fd82.tar.gz
opie-74a1afb21424a4f69c7a01fda2cc517daf69fd82.tar.bz2
Fixing the ".so" stuff for MacOS-X .. Quicklauncher apps are now
loaded successfully..
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--core/tools/quicklauncher/dropins.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/core/tools/quicklauncher/dropins.h b/core/tools/quicklauncher/dropins.h
index fe43ec2..3e2b5fd 100644
--- a/core/tools/quicklauncher/dropins.h
+++ b/core/tools/quicklauncher/dropins.h
@@ -31,2 +31,7 @@ namespace Opie {
31 31
32 // This code is very platform specific.. We should find better
33 // solutions to handle names.. Maybe one central function would be
34 // better than checking this ".so" stuff all around in the sources..
35 // (eilers)
36
32 // Below lines from TT then mine again 37 // Below lines from TT then mine again
@@ -38,3 +43,7 @@ namespace Opie {
38 } 43 }
44#ifdef Q_OS_MACX
45 QString path = QPEApplication::qpeDir() + "/plugins/application/lib"+name+".dylib";
46#else
39 QString path = QPEApplication::qpeDir() + "/plugins/application/lib"+name+".so"; 47 QString path = QPEApplication::qpeDir() + "/plugins/application/lib"+name+".so";
48#endif
40 49