Kaydet (Commit) 39ffccd2 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

WaE: case value not in enumerated type 'NSEventSubtype'

Change-Id: Iaf5de07b7f0da7294681b9cdc152575a756a73c7
üst e4dc93f5
......@@ -445,7 +445,8 @@ bool AquaSalInstance::isNSAppThread() const
void AquaSalInstance::handleAppDefinedEvent( NSEvent* pEvent )
{
switch( [pEvent subtype] )
int nSubtype = [pEvent subtype];
switch( nSubtype )
{
case AppStartTimerEvent:
AquaSalTimer::handleStartTimerEvent( pEvent );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment