Skip to content

Commit

Permalink
Simple fix for bug 16848 - added ::mitk:: prefix where necessary
Browse files Browse the repository at this point in the history
Signed-off-by: Rostislav Khlebnikov <r.khlebnikov@gmail.com>
  • Loading branch information
khlebnikov committed Apr 16, 2014
1 parent eb025dd commit 8a53f4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core/Code/Interactions/mitkEventStateMachine.h
Expand Up @@ -87,10 +87,10 @@ namespace mitk
* It assumes that there is a typedef Classname Self in classes that use this macro, as is provided by e.g. mitkClassMacro
*/
#define CONNECT_FUNCTION(a, f) \
EventStateMachine::AddActionFunction(a, MessageDelegate2<Self, StateMachineAction*, InteractionEvent*, bool>(this, &Self::f));
::mitk::EventStateMachine::AddActionFunction(a, ::mitk::MessageDelegate2<Self, ::mitk::StateMachineAction*, ::mitk::InteractionEvent*, bool>(this, &Self::f));

#define CONNECT_CONDITION(a, f) \
EventStateMachine::AddConditionFunction(a, MessageDelegate1<Self,const InteractionEvent*, bool>(this, &Self::f));
::mitk::EventStateMachine::AddConditionFunction(a, ::mitk::MessageDelegate1<Self,const ::mitk::InteractionEvent*, bool>(this, &Self::f));


/**
Expand Down

0 comments on commit 8a53f4b

Please sign in to comment.