From 09c00c51552aa52bd0058f213a24a2f26b9dd2fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20=C5=9Awierk?= Date: Mon, 9 Jan 2023 23:48:22 +0100 Subject: [PATCH] Gui: Removed unused method. --- src/Gui/MainWindow.cpp | 5 ----- src/Gui/MainWindow.h | 4 ---- 2 files changed, 9 deletions(-) diff --git a/src/Gui/MainWindow.cpp b/src/Gui/MainWindow.cpp index a3b3fc99c0..2815d9c2ea 100644 --- a/src/Gui/MainWindow.cpp +++ b/src/Gui/MainWindow.cpp @@ -570,11 +570,6 @@ QMenu* MainWindow::createPopupMenu () return menu; } -void MainWindow::arrangeIcons() -{ - d->mdiArea->tileSubWindows(); -} - void MainWindow::tile() { d->mdiArea->tileSubWindows(); diff --git a/src/Gui/MainWindow.h b/src/Gui/MainWindow.h index 11b37aaff0..39bc4f03be 100644 --- a/src/Gui/MainWindow.h +++ b/src/Gui/MainWindow.h @@ -214,10 +214,6 @@ public Q_SLOTS: * Sets text to the pane in the status bar. */ void setPaneText(int i, QString text); - /** - * Arranges all child windows in a horizontal tile pattern. - */ - void arrangeIcons(); /** * Arranges all child windows in a tile pattern. */