0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-10-10 06:11:03 +03:00

Fixed code style

This commit is contained in:
Konstantin Makarenkov
2025-03-20 11:12:46 +03:00
parent 47aee66e55
commit c7e4028637
4 changed files with 5 additions and 5 deletions

View File

@@ -35,8 +35,8 @@ TranslationEditor::TranslationEditor(QWidget* parent):
ui->tbStrings->setHorizontalHeaderItem(2, new QTableWidgetItem(tr("Property")));
ui->tbStrings->setHorizontalHeaderItem(3, new QTableWidgetItem(tr("Source text")));
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
m_clrReturn
= new QShortcut(QKeySequence(Qt::Key(Qt::CTRL) | Qt::Key_Return), this, SLOT(slotItemChecked()));
m_clrReturn = new QShortcut(QKeySequence(Qt::Key(Qt::CTRL) | Qt::Key_Return), this,
SLOT(slotItemChecked()));
#else
m_clrReturn
= new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_Return), this, SLOT(slotItemChecked()));