diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-01-02 17:14:02 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-02 22:24:50 -0800 |
commit | 36ba5d3382e89f247b5bde2efd0aac4428c34d96 (patch) | |
tree | f422d681907fd9593262587fd129d5db1d95b27b /qt-ui/mainwindow.cpp | |
parent | 57b49a78334089e233f740d5f150845c1a757c73 (diff) | |
download | subsurface-36ba5d3382e89f247b5bde2efd0aac4428c34d96.tar.gz |
Give more layouts reasonable names
This time for the mainwindow.
This includes an adjustment in the C++ code where we actually referenced
one of those weird generic names.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/mainwindow.cpp')
-rw-r--r-- | qt-ui/mainwindow.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/qt-ui/mainwindow.cpp b/qt-ui/mainwindow.cpp index 03f93a64d..08b228d4a 100644 --- a/qt-ui/mainwindow.cpp +++ b/qt-ui/mainwindow.cpp @@ -132,15 +132,16 @@ MainWindow::MainWindow() : QMainWindow(), // has no concept of "toolbar" for a non-mainwindow widget (...) // I need to take the current item that's in the toolbar Position // and reposition it alongside the grid layout. - QLayoutItem *p = ui.gridLayout->takeAt(0); - ui.gridLayout->addWidget(toolBar, 0, 0); - ui.gridLayout->addItem(p, 0, 1); + QLayoutItem *p = ui.profileInnerLayout->takeAt(0); + ui.profileInnerLayout->addWidget(toolBar, 0, 0); + ui.profileInnerLayout->addItem(p, 0, 1); // and now for some layout hackery // this gets us consistent margins everywhere and a much more balanced look QMargins margins(5, 5, 5, 5); QList<QString> dontChange; - dontChange << "notesAndSocialNetworksLayout" << ui.gridLayout->objectName(); + dontChange << "notesAndSocialNetworksLayout" << + "profileInnerLayout"; Q_FOREACH (QLayout *layout, findChildren<QLayout *>()) { // lots of internally used layouts by Qt have no names // don't mess with those (or scroll bars look terrible, among other things @@ -153,7 +154,7 @@ MainWindow::MainWindow() : QMainWindow(), layout->setContentsMargins(margins); } margins = QMargins(0, 5, 5, 5); - ui.gridLayout->setContentsMargins(margins); + ui.profileInnerLayout->setContentsMargins(margins); updateManager = new UpdateManager(this); } |