~ubuntu-branches/ubuntu/trusty/blender/trusty

« back to all changes in this revision

Viewing changes to intern/ghost/intern/GHOST_CallbackEventConsumer.cpp

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-03-06 12:08:47 UTC
  • mfrom: (1.5.1) (14.1.8 experimental)
  • Revision ID: package-import@ubuntu.com-20130306120847-frjfaryb2zrotwcg
Tags: 2.66a-1ubuntu1
* Resynchronize with Debian (LP: #1076930, #1089256, #1052743, #999024,
  #1122888, #1147084)
* debian/control:
  - Lower build-depends on libavcodec-dev since we're not
    doing the libav9 transition in Ubuntu yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
 
33
33
/**
34
 
 
35
34
 * Copyright (C) 2001 NaN Technologies B.V.
36
 
 * @author      Maarten Gribnau
37
 
 * @date        October 25, 2001
 
35
 * \author      Maarten Gribnau
 
36
 * \date        October 25, 2001
38
37
 */
39
38
 
40
39
#include "GHOST_Debug.h"
49
48
}
50
49
 
51
50
 
52
 
bool GHOST_CallbackEventConsumer::processEvent(GHOST_IEvent* event)
 
51
bool GHOST_CallbackEventConsumer::processEvent(GHOST_IEvent *event)
53
52
{
54
53
        return m_eventCallback((GHOST_EventHandle)event, m_userData) != 0;
55
54
}