Files
gcs-nf/App/CommandUI/CommandButton.cpp
T
2020-10-22 11:27:45 +08:00

21 lines
313 B
C++

#include "CommandButton.h"
CommandButton::CommandButton(QWidget *parent) : QPushButton(parent)
{
}
void CommandButton::keyPressEvent(QKeyEvent* event)
{
QWidget::keyPressEvent(event);
}
void CommandButton::keyReleaseEvent(QKeyEvent* event)
{
QWidget::keyReleaseEvent(event);
}