9#ifndef UI_GUI_OTHERSETTINGS_H
10#define UI_GUI_OTHERSETTINGS_H
12#include <QtCore/QVariant>
13#include <QtWidgets/QApplication>
14#include <QtWidgets/QCheckBox>
15#include <QtWidgets/QSpacerItem>
16#include <QtWidgets/QVBoxLayout>
17#include <QtWidgets/QWidget>
24 QVBoxLayout *verticalLayout;
25 QCheckBox *cbSelectiveTagUpdate;
26 QSpacerItem *verticalSpacer;
35 verticalLayout->setObjectName(QString::fromUtf8(
"verticalLayout"));
37 cbSelectiveTagUpdate->setObjectName(QString::fromUtf8(
"cbSelectiveTagUpdate"));
39 verticalLayout->addWidget(cbSelectiveTagUpdate);
41 verticalSpacer =
new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
43 verticalLayout->addItem(verticalSpacer);
53 cbSelectiveTagUpdate->setText(QCoreApplication::translate(
"GUI_OtherSettings",
"Only update changed tags",
nullptr));
Definition OtherSettings.h:30
Definition ui_GUI_OtherSettings.h:60
Definition ui_GUI_OtherSettings.h:22