Help: Use nullptr and fix a few warnings

Change-Id: I7f7307a765d8755bf96b0cad1210e61df0a0199f
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Eike Ziller
2018-04-19 10:47:13 +02:00
parent 0e81d01b2a
commit da18fc1f50
29 changed files with 70 additions and 77 deletions

View File

@@ -56,10 +56,6 @@
using namespace Help::Internal;
SearchWidget::SearchWidget()
: zoomCount(0)
, m_progress(0)
, searchEngine(0)
, resultWidget(0)
{
}
@@ -226,7 +222,7 @@ void SearchWidget::indexingFinished()
m_progress->reportFinished();
delete m_progress;
m_progress = NULL;
m_progress = nullptr;
m_queryWidget->show();
m_indexingDocumentationLabel->hide();
@@ -261,9 +257,9 @@ void SearchWidget::contextMenuEvent(QContextMenuEvent *contextMenuEvent)
if (!browser->rect().contains(point, true))
return;
QAction *openLink = 0;
QAction *openLinkInNewTab = 0;
QAction *copyAnchorAction = 0;
QAction *openLink = nullptr;
QAction *openLinkInNewTab = nullptr;
QAction *copyAnchorAction = nullptr;
QMenu menu;
QUrl link = browser->anchorAt(point);