refactor: CoreProcess fully qualify enums used in signals

This commit is contained in:
sithlord48
2025-08-06 19:05:35 -04:00
committed by Chris Rizzitello
parent e1d00d59a4
commit 63bd2e71b0

View File

@ -115,10 +115,10 @@ public:
Q_SIGNALS:
void starting();
void error(Error error);
void error(deskflow::gui::CoreProcess::Error error);
void logLine(const QString &line);
void connectionStateChanged(ConnectionState state);
void processStateChanged(ProcessState state);
void connectionStateChanged(deskflow::gui::CoreProcess::ConnectionState state);
void processStateChanged(deskflow::gui::CoreProcess::ProcessState state);
void secureSocket(bool enabled);
void daemonIpcClientConnectionFailed();