refactor(clang-format): Apply fixes
This commit is contained in:
parent
1adb1be404
commit
8db3e79919
41 changed files with 185 additions and 189 deletions
src/components
|
@ -163,7 +163,7 @@ void controller::bootstrap(bool writeback, bool dump_wmname) {
|
|||
/**
|
||||
* Launch the controller
|
||||
*/
|
||||
bool controller::run() {
|
||||
void controller::run() {
|
||||
assert(!m_connection.connection_has_error());
|
||||
|
||||
m_log.info("Starting application");
|
||||
|
@ -201,8 +201,13 @@ bool controller::run() {
|
|||
uninstall_confwatch();
|
||||
|
||||
m_running = false;
|
||||
}
|
||||
|
||||
return !m_reload;
|
||||
/**
|
||||
* Get completion state
|
||||
*/
|
||||
bool controller::completed() {
|
||||
return !m_running && !m_reload;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue