aboutsummaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2017-12-14 18:40:27 +0100
committerAqua-sama <aqua@iserlohn-fortress.net>2017-12-14 18:40:27 +0100
commit5fe7f60a152ace8fb6da378c6fcb83ba0c2c9f59 (patch)
treefe2a313250b9fdff8c396226734016fabb4b2717 /src/mainwindow.cpp
parentUpdated documentation (diff)
downloadsmolbote-5fe7f60a152ace8fb6da378c6fcb83ba0c2c9f59.tar.xz
Using Q_CHECK_PTR instead of Q_ASSERT on pointers
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 4d3870c..70dc7ea 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -229,7 +229,7 @@ void MainWindow::showSettingsDialog()
void MainWindow::setProfile(WebEngineProfile *profile)
{
- Q_ASSERT(profile != nullptr);
+ Q_CHECK_PTR(profile);
tabBar->setProfile(profile);
}
@@ -267,7 +267,7 @@ void MainWindow::toggleFullscreen()
void MainWindow::handleTabChanged(WebView *view)
{
- Q_ASSERT(view != nullptr);
+ Q_CHECK_PTR(view);
m_currentView = view;