- made unit testing easier by (mostly) removing the event queue singleton.

- fixed code style in many places (mostly indentation).
This commit is contained in:
Nick Bolton
2013-06-29 14:17:49 +00:00
parent 13b2649fa0
commit 608074c041
143 changed files with 2220 additions and 2163 deletions

View File

@@ -18,13 +18,8 @@
#include "CPlatformScreen.h"
CPlatformScreen::CPlatformScreen()
{
// do nothing
}
CPlatformScreen::CPlatformScreen(IEventQueue& eventQueue) :
IPlatformScreen(eventQueue)
CPlatformScreen::CPlatformScreen(IEventQueue* events) :
IPlatformScreen(events)
{
}