summaryrefslogtreecommitdiffstats
path: root/src/session.h
diff options
context:
space:
mode:
authorJan Darmochwal2010-10-03 18:39:42 +0200
committerJan Darmochwal2010-10-03 18:39:42 +0200
commitee3f7eafae9e2e570c95e1afa9bea156ba3bf736 (patch)
tree7ffcb71280a344bde5249069991a1b5b841474df /src/session.h
parentQt port is almost complete (at least it compiles) (diff)
downloadvmchooser-ee3f7eafae9e2e570c95e1afa9bea156ba3bf736.tar.gz
vmchooser-ee3f7eafae9e2e570c95e1afa9bea156ba3bf736.tar.xz
vmchooser-ee3f7eafae9e2e570c95e1afa9bea156ba3bf736.zip
TreeView for sessions (replaces ListView)
TreeView with SessionTreeModel replaces the old List View Other changes: * fixed bad copy and paste in CMakeLists.txt * added make clean to build.sh * removed moc_ and ui_ files from src
Diffstat (limited to 'src/session.h')
-rw-r--r--src/session.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/session.h b/src/session.h
index ce8ce43..a61f286 100644
--- a/src/session.h
+++ b/src/session.h
@@ -13,7 +13,7 @@ public:
virtual QString shortDescription() const = 0;
virtual QString description() const = 0;
virtual QString icon() const = 0;
- virtual bool run() = 0;
+ virtual bool run() const = 0;
virtual bool operator<(const Session& s) const = 0;
};