Fix T40609: Wrong WS between word and '?' (no space in english typography in those cases).

This commit is contained in:
Bastien Montagne
2014-06-14 15:58:12 +02:00
parent 6603a2be9d
commit 871a8eb6b2
2 changed files with 2 additions and 2 deletions

View File

@@ -1428,6 +1428,6 @@ int GHOST_SystemWin32::toggleConsole(int action)
int GHOST_SystemWin32::confirmQuit(GHOST_IWindow *window) const
{
return (MessageBox(window ? ((GHOST_WindowWin32 *)window)->getHWND() : 0, "Some changes have not been saved.\nDo you really want to quit ?",
return (MessageBox(window ? ((GHOST_WindowWin32 *)window)->getHWND() : 0, "Some changes have not been saved.\nDo you really want to quit?",
"Exit Blender", MB_OKCANCEL | MB_ICONWARNING | MB_TOPMOST) == IDOK);
}