Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Apr 6, 2013
1 parent 42fc4b1 commit a1d38b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doomsday/client/src/con_main.cpp
Expand Up @@ -2087,7 +2087,7 @@ void Con_AbnormalShutdown(char const *message)
// windows. (Alternatively could hide/disable drawing of the windows.) Note
// that the app's event loop is running normally while we show the native
// message box below.
ClientApp::app().windowSystem().closeAll();
ClientApp::windowSystem().closeAll();
#endif

if(message) // Only show if a message given.
Expand Down
2 changes: 1 addition & 1 deletion doomsday/client/src/ui/windowsystem.cpp
Expand Up @@ -56,7 +56,7 @@ ClientWindow *WindowSystem::createWindow(String const &id)

bool WindowSystem::haveMain() // static
{
return ClientApp::app().windowSystem().d->windows.contains("main");
return ClientApp::windowSystem().d->windows.contains("main");
}

ClientWindow &WindowSystem::main() // static
Expand Down

0 comments on commit a1d38b0

Please sign in to comment.