diff options
author | Simon Rettberg | 2019-06-12 15:12:08 +0200 |
---|---|---|
committer | Simon Rettberg | 2019-06-12 15:12:08 +0200 |
commit | 7dd83373147927ae3563642af6c054fa2b8af3ab (patch) | |
tree | 7d48b5110b02129cbb4d18f65f076abb21ef8173 /src | |
parent | Gray out all VBox VMs if no VTx is available (diff) | |
download | vmchooser2-7dd83373147927ae3563642af6c054fa2b8af3ab.tar.gz vmchooser2-7dd83373147927ae3563642af6c054fa2b8af3ab.tar.xz vmchooser2-7dd83373147927ae3563642af6c054fa2b8af3ab.zip |
Save everything (thanks QTCreator)
Diffstat (limited to 'src')
-rw-r--r-- | src/session.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/session.h b/src/session.h index 2b50a56..70bee42 100644 --- a/src/session.h +++ b/src/session.h @@ -30,7 +30,7 @@ class Session { virtual QString uuid() const { return QString(); } virtual int type() const = 0; virtual SectionType section() const = 0; - virtual bool is64Bit() const { return false; } + virtual bool needsVtx() const { return false; } virtual QVariant foregroundRole() const { return QVariant(); } virtual bool operator<(const Session& s) const = 0; |