merged 1.3 r985:986 into trunk and 1.4
This commit is contained in:
parent
901d939267
commit
81b5124e58
|
@ -27,32 +27,29 @@ class CKeyStateImpl : public CKeyState
|
||||||
protected:
|
protected:
|
||||||
virtual SInt32 pollActiveGroup() const
|
virtual SInt32 pollActiveGroup() const
|
||||||
{
|
{
|
||||||
throw std::exception("The method or operation is not implemented.");
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual KeyModifierMask pollActiveModifiers() const
|
virtual KeyModifierMask pollActiveModifiers() const
|
||||||
{
|
{
|
||||||
throw std::exception("The method or operation is not implemented.");
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual bool fakeCtrlAltDel()
|
virtual bool fakeCtrlAltDel()
|
||||||
{
|
{
|
||||||
throw std::exception("The method or operation is not implemented.");
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void getKeyMap( CKeyMap& keyMap )
|
virtual void getKeyMap(CKeyMap& keyMap)
|
||||||
{
|
{
|
||||||
throw std::exception("The method or operation is not implemented.");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void fakeKey( const Keystroke& keystroke )
|
virtual void fakeKey(const Keystroke& keystroke)
|
||||||
{
|
{
|
||||||
throw std::exception("The method or operation is not implemented.");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void pollPressedKeys( KeyButtonSet& pressedKeys ) const
|
virtual void pollPressedKeys(KeyButtonSet& pressedKeys) const
|
||||||
{
|
{
|
||||||
throw std::exception("The method or operation is not implemented.");
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue