summaryrefslogtreecommitdiff
path: root/noncore/applets/keyhelper/keyhelperapplet/anylnk/AnyLnk.h
Side-by-side diff
Diffstat (limited to 'noncore/applets/keyhelper/keyhelperapplet/anylnk/AnyLnk.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/applets/keyhelper/keyhelperapplet/anylnk/AnyLnk.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/noncore/applets/keyhelper/keyhelperapplet/anylnk/AnyLnk.h b/noncore/applets/keyhelper/keyhelperapplet/anylnk/AnyLnk.h
index 9853942..d170e6d 100644
--- a/noncore/applets/keyhelper/keyhelperapplet/anylnk/AnyLnk.h
+++ b/noncore/applets/keyhelper/keyhelperapplet/anylnk/AnyLnk.h
@@ -1,38 +1,39 @@
#ifndef _ANYLNK_H_
#define _ANYLNK_H_
#include <time.h>
#include <qstring.h>
#include <qstringlist.h>
#include <qpixmap.h>
#include <qimage.h>
#include <qclipboard.h>
#include <qtextcodec.h>
#include <qpe/qpeapplication.h>
-#include <qpe/resource.h>
+
+#include <opie2/oresource.h>
#include "AppLnkManager.h"
#include "ConfigEx.h"
class AnyLnk
{
public:
AnyLnk(){}
AnyLnk(const QStringList& params){
m_params = params;
loadPixmap();
}
virtual ~AnyLnk(){
}
virtual bool isValid() = 0;
virtual void execute() = 0;
virtual QString name() = 0;
virtual const QPixmap& pixmap() = 0;
protected:
QStringList m_params;
QPixmap m_pixmap;
virtual void loadPixmap();