Browse Source

Tested Win32 title change on MS-Windows.

Dawoodoz 5 years ago
parent
commit
63c1207e94
1 changed files with 0 additions and 2 deletions
  1. 0 2
      Source/windowManagers/Win32Window.cpp

+ 0 - 2
Source/windowManagers/Win32Window.cpp

@@ -66,11 +66,9 @@ static LRESULT CALLBACK WindowProcedure(HWND hwnd, UINT message, WPARAM wParam,
 static TCHAR windowClassName[] = _T("DfpsrWindowApplication");
 static TCHAR windowClassName[] = _T("DfpsrWindowApplication");
 
 
 void Win32Window::updateTitle() {
 void Win32Window::updateTitle() {
-	/* TODO: Test on Windows
 	if (!SetWindowTextA(this->hwnd, this->title.toStdString().c_str())) {
 	if (!SetWindowTextA(this->hwnd, this->title.toStdString().c_str())) {
 		dsr::printText("Warning! Could not assign the window title ", dsr::string_mangleQuote(this->title), ".\n");		
 		dsr::printText("Warning! Could not assign the window title ", dsr::string_mangleQuote(this->title), ".\n");		
 	}
 	}
-	*/
 }
 }
 
 
 void Win32Window::setFullScreen(bool enabled) {
 void Win32Window::setFullScreen(bool enabled) {