Skip to content

Commit

Permalink
Merge branch 'master' of https://gitee.com/x-tools-author/x-tools
Browse files Browse the repository at this point in the history
  • Loading branch information
x-tools-author committed Oct 12, 2024
2 parents d595ca6 + 8706b24 commit 3ba2d99
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ Private
private
CMakePresets.json
CMakeUserPresets.json
compile_commands.json
10 changes: 5 additions & 5 deletions Source/IO/UI/DataVisualization/2D/ChartsUi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ ChartsUi::ChartsUi(QWidget *parent)
, ui(new Ui::ChartsUi)
{
ui->setupUi(this);
for (int i = 0; i < 8; i++) {
QCheckBox *checkBox = new QCheckBox(this);
checkBox->setText(tr("Channel") + " " + QString::number(i + 1));
ui->verticalLayoutControl->addWidget(checkBox);
}
// for (int i = 0; i < 8; i++) {
// QCheckBox *checkBox = new QCheckBox(this);
// checkBox->setText(tr("Channel") + " " + QString::number(i + 1));
// ui->verticalLayoutControl->addWidget(checkBox);
// }
}

ChartsUi::~ChartsUi()
Expand Down
1 change: 1 addition & 0 deletions Source/IOPage/IOPage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#include <QMenu>
#include <QMessageBox>
#include <QWidgetAction>
#include <QToolButton>

#include "IO/IO/Communication/Communication.h"
#include "IO/IO/IOFactory.h"
Expand Down
1 change: 0 additions & 1 deletion Source/IOPage/IOPage.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
#include <QSettings>
#include <QTabWidget>
#include <QTimer>
#include <QToolButton>
#include <QVariantMap>
#include <QWidget>

Expand Down

0 comments on commit 3ba2d99

Please sign in to comment.