From: APTX Date: Sun, 22 Jun 2014 16:12:13 +0000 (+0200) Subject: A service's initial state should be Uninitialized not Stopped state. X-Git-Url: https://gitweb.tyo.aptx.org/?a=commitdiff_plain;h=165adf18497dadf15b1e7d179e98e3a10644443b;p=localmylist.git A service's initial state should be Uninitialized not Stopped state. --- diff --git a/localmylist/service.cpp b/localmylist/service.cpp index 7d6a4b6..0d675fd 100644 --- a/localmylist/service.cpp +++ b/localmylist/service.cpp @@ -6,7 +6,7 @@ namespace LocalMyList { Service::Service(const QString &name, QObject *parent) : - QObject{parent}, m_state{Stopped}, m_name{name} + QObject{parent}, m_state{Uninitialized}, m_name{name} { }