From 3533e0d4cce3e7af2df8e6c42f462315da8c9df8 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Sat, 2 Jun 2018 11:02:42 +0200 Subject: Clazy fixes --- src/mainwindow/mainwindow.cpp | 10 +++++----- src/mainwindow/subwindow.cpp | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'src/mainwindow') diff --git a/src/mainwindow/mainwindow.cpp b/src/mainwindow/mainwindow.cpp index 7e49ab8..0234f13 100644 --- a/src/mainwindow/mainwindow.cpp +++ b/src/mainwindow/mainwindow.cpp @@ -116,7 +116,7 @@ void MainWindow::createMenuBar() createSubWindow(); }, QKeySequence(m_config->value("mainwindow.shortcuts.newGroup").value().c_str())); - smolboteMenu->addAction(tr("New window"), this, [this]() { + smolboteMenu->addAction(tr("New window"), this, []() { auto *browser = qobject_cast(qApp); if(browser) browser->createWindow(); @@ -158,20 +158,20 @@ void MainWindow::addAction(ActionLocation where, QAction *action) void MainWindow::addDockWidget(Qt::DockWidgetArea area, QWidget *widget) { - QList docks; + QDockWidget *lastDock = nullptr; for(QDockWidget *dock : findChildren()) { if(dockWidgetArea(dock) == area) - docks.append(dock); + lastDock = dock; } DockWidget *dock = new DockWidget(widget->windowTitle(), this); dock->setMinimumWidth(460); dock->setWidget(widget); - if(docks.empty()) + if(lastDock == nullptr) QMainWindow::addDockWidget(area, dock); else - tabifyDockWidget(docks.last(), dock); + tabifyDockWidget(lastDock, dock); } void MainWindow::removeDockWidget(QWidget *widget) diff --git a/src/mainwindow/subwindow.cpp b/src/mainwindow/subwindow.cpp index 497e6d0..17a2268 100644 --- a/src/mainwindow/subwindow.cpp +++ b/src/mainwindow/subwindow.cpp @@ -196,7 +196,7 @@ void SubWindow::restoreSession(const QJsonObject &sessionData) return; } - for(const auto tab : tabs) { + for(const auto &tab : tabs) { auto *view = new WebView(profile, this); view->load(QUrl::fromUserInput(tab.toString())); tabWidget->addTab(view); -- cgit v1.2.1