From 22abd958fe1bcc8e8341b24c18d51e6f89a34abd Mon Sep 17 00:00:00 2001 From: Ammerhai Date: Tue, 18 Nov 2025 18:18:01 +0100 Subject: [PATCH] change window title --- src/main_linux.cpp | 2 +- src/main_win32.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main_linux.cpp b/src/main_linux.cpp index 5b912dd..cfb78cc 100644 --- a/src/main_linux.cpp +++ b/src/main_linux.cpp @@ -358,7 +358,7 @@ int main(int, char**) // Create window with Vulkan context glfwWindowHint(GLFW_CLIENT_API, GLFW_NO_API); - GLFWwindow* window = glfwCreateWindow(1280, 720, "Dear ImGui GLFW+Vulkan example", nullptr, nullptr); + GLFWwindow* window = glfwCreateWindow(1280, 720, "Work Calendar", nullptr, nullptr); if (!glfwVulkanSupported()) { printf("GLFW: Vulkan Not Supported\n"); diff --git a/src/main_win32.cpp b/src/main_win32.cpp index 7d4a1f9..e0898e5 100644 --- a/src/main_win32.cpp +++ b/src/main_win32.cpp @@ -39,7 +39,7 @@ int main(int, char**) // Create application window WNDCLASSEXW wc = { sizeof(wc), CS_CLASSDC, WndProc, 0L, 0L, GetModuleHandle(nullptr), nullptr, nullptr, nullptr, nullptr, L"ImGui Example", nullptr }; ::RegisterClassExW(&wc); - HWND hwnd = ::CreateWindowW(wc.lpszClassName, L"Dear ImGui DirectX11 Example", WS_OVERLAPPEDWINDOW, 100, 100, (int)(1600 * main_scale), (int)(900 * main_scale), nullptr, nullptr, wc.hInstance, nullptr); + HWND hwnd = ::CreateWindowW(wc.lpszClassName, L"Work Calendar", WS_OVERLAPPEDWINDOW, 100, 100, (int)(1600 * main_scale), (int)(900 * main_scale), nullptr, nullptr, wc.hInstance, nullptr); // Initialize Direct3D if (!CreateDeviceD3D(hwnd))