@@ -316,7 +316,7 @@ void MainWindow::init()
316316 action->setCheckable (true );
317317 action->setChecked (ui->mainTab ->indexOf (widget) != -1 );
318318 connect (action, &QAction::toggled, [=](bool show) { toggleTabVisible (widget, show); });
319- // Connect tabCloseRequested for setting checked the appropiate menu entry.
319+ // Connect tabCloseRequested for setting checked the appropriate menu entry.
320320 // Note these are called after the actual tab is closed only because they are connected
321321 // after connecting closeTab.
322322 connect (ui->mainTab , &QTabWidget::tabCloseRequested, [=](int /* index*/ ) {
@@ -2375,7 +2375,7 @@ void MainWindow::on_actionWiki_triggered() const
23752375 QDesktopServices::openUrl (QUrl (" https://github.com/sqlitebrowser/sqlitebrowser/wiki" ));
23762376}
23772377
2378- // 'Help | Bug Report...' link will set an appropiate body, add the system information and set the label 'bug' automatically to the issue
2378+ // 'Help | Bug Report...' link will set an appropriate body, add the system information and set the label 'bug' automatically to the issue
23792379void MainWindow::on_actionBug_report_triggered () const
23802380{
23812381 const QString version = Application::versionString ();
@@ -2414,7 +2414,7 @@ void MainWindow::on_actionBug_report_triggered() const
24142414 QDesktopServices::openUrl (url);
24152415}
24162416
2417- // 'Help | Feature Request...' link will set an appropiate body and add the label 'enhancement' automatically to the issue
2417+ // 'Help | Feature Request...' link will set an appropriate body and add the label 'enhancement' automatically to the issue
24182418void MainWindow::on_actionFeature_Request_triggered () const
24192419{
24202420 QUrlQuery query;
@@ -3543,7 +3543,7 @@ void MainWindow::toggleTabVisible(QWidget* tabWidget, bool show)
35433543
35443544void MainWindow::restoreOpenTabs (QString tabs)
35453545{
3546- // Split the tab list, skiping the empty parts so the empty string turns to an empty list
3546+ // Split the tab list, skipping the empty parts so the empty string turns to an empty list
35473547 // and not a list of one empty string.
35483548 QStringList tabList = tabs.split (' ' , QString::SkipEmptyParts);
35493549
0 commit comments