Use consistent calling convention: SAL_CALL

Fixes error C2695: 'VLC::EventHandler::run': overriding virtual
function differs from 'osl::Thread::run' only by calling convention.

Change-Id: Ie6c9bd9a2f5e6830dc70ded29839cd5b4b4b0445
This commit is contained in:
Tor Lillqvist
2013-09-09 09:56:21 +03:00
parent 6031d34ec2
commit ed624d7f9c

View File

@@ -22,7 +22,7 @@ namespace VLC
void stop();
protected:
virtual void run();
virtual void SAL_CALL run();
public:
typedef boost::function< void() > TCallback;