diff options
author | Tomaz Canabrava <tcanabrava@kde.org> | 2013-04-24 19:57:50 -0300 |
---|---|---|
committer | Tomaz Canabrava <tcanabrava@kde.org> | 2013-04-24 19:57:50 -0300 |
commit | 607c08bb25926d964f0b430440d6a1c6b6366c95 (patch) | |
tree | a5f7465bcc1480b4c8804083c0bb4da5ed67032d /qt-ui/mainwindow.cpp | |
parent | 634abb8bb2dadbf3657629b8f26bc1e4cc0dd79f (diff) | |
download | subsurface-607c08bb25926d964f0b430440d6a1c6b6366c95.tar.gz |
Remove the use of this->
Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
Diffstat (limited to 'qt-ui/mainwindow.cpp')
-rw-r--r-- | qt-ui/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/mainwindow.cpp b/qt-ui/mainwindow.cpp index e8fcd3200..b0b56a4e7 100644 --- a/qt-ui/mainwindow.cpp +++ b/qt-ui/mainwindow.cpp @@ -26,7 +26,7 @@ MainWindow::MainWindow() : ui(new Ui::MainWindow()), { ui->setupUi(this); ui->ListWidget->setModel(model); - this->setWindowIcon(QIcon(":subsurface-icon")); + setWindowIcon(QIcon(":subsurface-icon")); // Just to test the star widgets, can be safely removed. } |