diff options
author | Saturn&Eric <[email protected]> | 2021-12-05 11:31:51 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2021-12-05 11:31:51 +0000 |
commit | 033362e312c586ad3eaf0d6b3631241f908496ff (patch) | |
tree | 9bab1796b919db2c0fa88e83b183a5a5c7583fcc /src/ui/help/AboutDialog.cpp | |
parent | Merge pull request #25 from saturneric/develop (diff) | |
parent | Merge branch 'main' into develop (diff) | |
download | GpgFrontend-033362e312c586ad3eaf0d6b3631241f908496ff.tar.gz GpgFrontend-033362e312c586ad3eaf0d6b3631241f908496ff.zip |
Merge pull request #26 from saturneric/develop
Develop Fixed For Version 2.0.1.
Diffstat (limited to '')
-rw-r--r-- | src/ui/help/AboutDialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/help/AboutDialog.cpp b/src/ui/help/AboutDialog.cpp index 836c165e..72100713 100644 --- a/src/ui/help/AboutDialog.cpp +++ b/src/ui/help/AboutDialog.cpp @@ -42,7 +42,7 @@ AboutDialog::AboutDialog(int defaultIndex, QWidget* parent) : QDialog(parent) { tabWidget->addTab(updateTab, _("Update")); connect(tabWidget, &QTabWidget::currentChanged, this, - [&](int index) { qDebug() << "Current Index" << index; }); + [&](int index) { LOG(INFO) << "Current Index" << index; }); if (defaultIndex < tabWidget->count() && defaultIndex >= 0) { tabWidget->setCurrentIndex(defaultIndex); |