View | Details | Raw Unified | Return to issue 96992
Collapse All | Expand All

(-)apple_remote/RemoteMainController.m (-2 / +3 lines)
Lines 110-122 Link Here
110
- (void) remoteButton: (RemoteControlEventIdentifier)buttonIdentifier pressedDown: (BOOL) pressedDown clickCount: (unsigned int)clickCount
110
- (void) remoteButton: (RemoteControlEventIdentifier)buttonIdentifier pressedDown: (BOOL) pressedDown clickCount: (unsigned int)clickCount
111
{
111
{
112
    NSString* pressed = @"";
112
    NSString* pressed = @"";
113
113
#ifdef DEBUG
114
    NSString* buttonName = nil;
115
#endif
114
    if (pressedDown)
116
    if (pressedDown)
115
    {
117
    {
116
        pressed = @"(pressed)";
118
        pressed = @"(pressed)";
117
119
118
#ifdef DEBUG
120
#ifdef DEBUG
119
        NSString* buttonName = nil;
120
        switch(buttonIdentifier) 
121
        switch(buttonIdentifier) 
121
        {
122
        {
122
            case kRemoteButtonPlus:         buttonName = @"Volume up";              break;  // MEDIA_COMMAND_VOLUME_UP  ( see vcl/inc/vcl/cmdevt.hxx )
123
            case kRemoteButtonPlus:         buttonName = @"Volume up";              break;  // MEDIA_COMMAND_VOLUME_UP  ( see vcl/inc/vcl/cmdevt.hxx )

Return to issue 96992