From ba3c5aa40274c11f9cefd4e9842be3488cad07b4 Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Fri, 15 Jun 2018 14:05:25 +0200 Subject: Fix indentation, cleanup, refactoring, deletions * Remove unused methods for adding hostname and user to xml * Avoid copying/(de)serializing XML a thousand times * Fix Session::isValid() or rather make it a bit more usable (although it's unused currently) * baseDir is global, not per VSession, which doesn't make any sense without the legacy approach of recusively loading one xml file per entry --- src/xsession.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/xsession.cpp') diff --git a/src/xsession.cpp b/src/xsession.cpp index 3583079..0c41136 100644 --- a/src/xsession.cpp +++ b/src/xsession.cpp @@ -76,7 +76,8 @@ bool XSession::isActive() const { } bool XSession::isValid() const { - return true; + QFileInfo fi(this->exec_); + return !fi.isAbsolute() || (fi.isFile() && fi.isExecutable()); } bool XSession::isLocked() const { -- cgit v1.2.3-55-g7522