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:
@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user