From 8b46d0b5a99b7b5cbc59e1faa9437b9b2c0398bb Mon Sep 17 00:00:00 2001 From: vaxerski Date: Wed, 21 Sep 2022 15:10:57 +0100 Subject: [PATCH] simplify some local vars --- src/Window.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/Window.cpp b/src/Window.cpp index 7fe14869..d547c9b4 100644 --- a/src/Window.cpp +++ b/src/Window.cpp @@ -97,8 +97,7 @@ void CWindow::updateWindowDecos() { pid_t CWindow::getPID() { pid_t PID = -1; if (!m_bIsX11) { - const auto CLIENT = wl_resource_get_client(m_uSurface.xdg->resource); - wl_client_get_credentials(CLIENT, &PID, nullptr, nullptr); + wl_client_get_credentials(wl_resource_get_client(m_uSurface.xdg->resource), &PID, nullptr, nullptr); } else { PID = m_uSurface.xwayland->pid; } @@ -212,10 +211,9 @@ void CWindow::moveToWorkspace(int workspaceID) { if (m_iWorkspaceID != workspaceID) { m_iWorkspaceID = workspaceID; - const auto PWORKSPACE = g_pCompositor->getWorkspaceByID(m_iWorkspaceID); - if (PWORKSPACE) { + if (const auto PWORKSPACE = g_pCompositor->getWorkspaceByID(m_iWorkspaceID); PWORKSPACE) { g_pEventManager->postEvent(SHyprIPCEvent{"movewindow", getFormat("%x,%s", this, PWORKSPACE->m_szName.c_str())}); - } + } } }