From: mishas Date: Fri, 21 Sep 2007 10:12:16 +0000 (+0000) Subject: added osso_context_t pointer to 'activate' method X-Git-Url: https://vcs.maemo.org/git/?p=simple-launcher;a=commitdiff_plain;h=0445169d505f6c4101c3a15a7d75ad572ecd17a0 added osso_context_t pointer to 'activate' method git-svn-id: file:///svnroot/simple-launcher/trunk@236 3ba93dab-e023-0410-b42a-de7732cf370a --- diff --git a/misc/BasicItem.h b/misc/BasicItem.h index d38a5fa..e3a342c 100644 --- a/misc/BasicItem.h +++ b/misc/BasicItem.h @@ -22,6 +22,8 @@ #include +#include + class BasicItem { protected: BasicItem(const std::string& type, const std::string& id) : myType(type), myID(id), myEnabled(false) {} @@ -37,7 +39,7 @@ public: virtual std::string getComment() const = 0; virtual GdkPixbuf *getIcon(int iconSize) const = 0; - virtual void activate() = 0; + virtual void activate(osso_context_t *context) = 0; virtual bool isSane() const = 0;