mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-30 23:50:19 -07:00
19 lines
262 B
C++
19 lines
262 B
C++
#include "shortcutstab.h"
|
|
#include "ui_shortcutstab.h"
|
|
|
|
ShortcutsTab::ShortcutsTab() :
|
|
ui(new Ui::shortcutsTab)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
void ShortcutsTab::retranslateUi()
|
|
{
|
|
ui->retranslateUi(this);
|
|
}
|
|
|
|
ShortcutsTab::~ShortcutsTab()
|
|
{
|
|
delete ui;
|
|
}
|