mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 02:42:48 +00:00
kdeui: add dummy function for the virtual KModifierKeyInfoProvider::x11Event()
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
293c931e22
commit
8ef68e36db
1 changed files with 10 additions and 0 deletions
|
@ -32,10 +32,20 @@ KModifierKeyInfoProvider::~KModifierKeyInfoProvider()
|
|||
|
||||
bool KModifierKeyInfoProvider::setKeyLatched(Qt::Key key, bool latched)
|
||||
{
|
||||
Q_UNUSED(key);
|
||||
Q_UNUSED(latched);
|
||||
return false;
|
||||
}
|
||||
|
||||
bool KModifierKeyInfoProvider::setKeyLocked(Qt::Key key, bool locked)
|
||||
{
|
||||
Q_UNUSED(key);
|
||||
Q_UNUSED(locked);
|
||||
return false;
|
||||
}
|
||||
|
||||
bool KModifierKeyInfoProvider::x11Event(XEvent *event)
|
||||
{
|
||||
Q_UNUSED(event);
|
||||
return false;
|
||||
}
|
Loading…
Add table
Reference in a new issue