summaryrefslogtreecommitdiff
path: root/plugins-alternative/PluginLoader/keybinding/KeyBind.cpp
blob: 0fd5287c4789974e3058e33af893dfc1f8c91b3a (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "KeyBind.h"

KeyBind::KeyBind(QWidget *parent) :
    QLineEdit(parent)
{
}

void KeyBind::keyPressEvent(QKeyEvent * event)
{
    emit newKey(event);
}