summaryrefslogtreecommitdiffstats
path: root/src/session.h
diff options
context:
space:
mode:
authorSimon Rettberg2015-11-12 17:03:11 +0100
committerSimon Rettberg2015-11-12 17:03:11 +0100
commit1c49173c8f62d3b9e609d22a027a42376db5d3de (patch)
tree2e5559d0435aa5ff784ee58e7dbcc8524a048984 /src/session.h
parentAdd images for win2k, winxp, win8 (diff)
downloadvmchooser2-1c49173c8f62d3b9e609d22a027a42376db5d3de.tar.gz
vmchooser2-1c49173c8f62d3b9e609d22a027a42376db5d3de.tar.xz
vmchooser2-1c49173c8f62d3b9e609d22a027a42376db5d3de.zip
Start refactoring download helpers and icon management
Diffstat (limited to 'src/session.h')
-rw-r--r--src/session.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/session.h b/src/session.h
index e1af027..515bd2d 100644
--- a/src/session.h
+++ b/src/session.h
@@ -2,6 +2,7 @@
#define VMCHOOSER_SESSION_H_
class QString;
+class QIcon;
class Session {
public:
@@ -13,7 +14,7 @@ class Session {
virtual int priority() const = 0;
virtual QString shortDescription() const = 0;
virtual QString description() const = 0;
- virtual QString icon() const = 0;
+ virtual QIcon icon() const = 0;
virtual bool run() const = 0;
virtual int type() const = 0;