build: rm DESKFLOW_APP_NAME define

Unify Server APP USER_CONFIG_NAME and SYSTEM_CONFIG_NAME
 Some unix users may need to move their config to deskflow.conf from .deskflow.conf
This commit is contained in:
sithlord48
2024-11-01 08:59:17 -04:00
committed by Nick Bolton
parent 9b59acdf26
commit 403830ceea
27 changed files with 83 additions and 77 deletions

View File

@ -149,7 +149,7 @@ MSWindowsScreen::MSWindowsScreen(
updateScreenShape();
m_class = createWindowClass();
m_window = createWindow(m_class, DESKFLOW_APP_NAME);
m_window = createWindow(m_class, kAppName);
forceShowCursor();
LOG((CLOG_DEBUG "screen shape: %d,%d %dx%d %s", m_x, m_y, m_w, m_h, m_multimon ? "(multi-monitor)" : ""));
LOG((CLOG_DEBUG "window is 0x%08x", m_window));
@ -851,7 +851,7 @@ ATOM MSWindowsScreen::createWindowClass() const
classInfo.hCursor = NULL;
classInfo.hbrBackground = NULL;
classInfo.lpszMenuName = NULL;
classInfo.lpszClassName = DESKFLOW_APP_NAME;
classInfo.lpszClassName = kAppName;
classInfo.hIconSm = NULL;
return RegisterClassEx(&classInfo);
}