merged 1.3 r985:986 into trunk and 1.4

This commit is contained in:
Nick Bolton 2011-05-11 21:12:20 +00:00
parent 901d939267
commit 81b5124e58
1 changed files with 6 additions and 9 deletions

View File

@ -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.");
} }
}; };