summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/function_keyboard.h
authorharlekin <harlekin>2002-10-24 16:14:42 (UTC)
committer harlekin <harlekin>2002-10-24 16:14:42 (UTC)
commit07811d76c261ece00a45589a2eb9d2bb8971943e (patch) (unidiff)
tree15a9c09878ff84c91b6ca0de7b7ed3ba4ff393ae /noncore/apps/opie-console/function_keyboard.h
parent1cc47fb5ca1516eb1c427666ca2bb650af271d0a (diff)
downloadopie-07811d76c261ece00a45589a2eb9d2bb8971943e.zip
opie-07811d76c261ece00a45589a2eb9d2bb8971943e.tar.gz
opie-07811d76c261ece00a45589a2eb9d2bb8971943e.tar.bz2
better use resource::
Diffstat (limited to 'noncore/apps/opie-console/function_keyboard.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/function_keyboard.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/noncore/apps/opie-console/function_keyboard.h b/noncore/apps/opie-console/function_keyboard.h
index 7f313d6..80d9f29 100644
--- a/noncore/apps/opie-console/function_keyboard.h
+++ b/noncore/apps/opie-console/function_keyboard.h
@@ -4,2 +4,3 @@
4#include <qpe/config.h> 4#include <qpe/config.h>
5#include <qpe/resource.h>
5#include <qpe/qpeapplication.h> 6#include <qpe/qpeapplication.h>
@@ -18,9 +19,8 @@ struct FKey {
18 FKey(): qcode(0), unicode(0) {}; 19 FKey(): qcode(0), unicode(0) {};
19 FKey(const QString &l, const QString &f, ushort q, ushort u): 20 FKey(const QString &l, const QString &f, ushort q, ushort u):
20 label(l), pixFile(f), qcode(q), unicode(u) { 21 label(l), pixFile(f), qcode(q), unicode(u) {
21
22 if (!f.isEmpty()) {
23 22
24 pix = new QPixmap (QPEApplication::qpeDir() + "pics/console/keys/" + f); 23 if (!f.isEmpty()) {
25 24
25 pix = new QPixmap ( Resource::loadPixmap("console/keys/" + f ) );
26 } 26 }