From 0ccd2bbca0e36f895012315d4ad1028f9d3f90a0 Mon Sep 17 00:00:00 2001 From: Michael Reeves Date: Sat, 30 Dec 2017 18:01:16 -0500 Subject: [PATCH] QString::null is depriated as of QT 5.9. Use QString() instead. Non-breaking change. Tecnically the second parameter iof KHelpClient::invokeHelp isn't even needed as will defualt to QString(). Leaving it for clarity sake. Signed-off-by: Michael Reeves --- src/optiondialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/optiondialog.cpp b/src/optiondialog.cpp index d05ce79..f7e073f 100644 --- a/src/optiondialog.cpp +++ b/src/optiondialog.cpp @@ -603,7 +603,7 @@ void OptionDialog::buttonClicked( QAbstractButton *button ) { } void OptionDialog::helpRequested() { - KHelpClient::invokeHelp( QStringLiteral( "kdiff3/index.html" ), QString::null ); + KHelpClient::invokeHelp( QStringLiteral( "kdiff3/index.html" ), QString()); } OptionDialog::~OptionDialog( void ) { -- GitLab