summaryrefslogtreecommitdiff
path: root/core/launcher/mrulist.h
Side-by-side diff
Diffstat (limited to 'core/launcher/mrulist.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/mrulist.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/launcher/mrulist.h b/core/launcher/mrulist.h
index 141a09b..ff111ce 100644
--- a/core/launcher/mrulist.h
+++ b/core/launcher/mrulist.h
@@ -27,24 +27,25 @@
#include <qframe.h>
#include <qlist.h>
#include <qpixmap.h>
class MRUList : public QFrame
{
public:
MRUList( QWidget *parent );
~MRUList();
virtual QSize sizeHint() const;
static void addTask( const AppLnk *appLnk );
+ static void removeTask(const QString &appName );
bool quitOldApps();
protected:
void mousePressEvent(QMouseEvent *e);
void mouseReleaseEvent(QMouseEvent *e);
void paintEvent( QPaintEvent *event );
private:
static QList<MRUList> *MRUListWidgets;
static QList<AppLnk> *task;
int selected;
int oldsel;