Fix KF6 runtime integration warnings

This commit is contained in:
Mario Fetka
2026-07-06 07:37:58 +02:00
parent 65d3f78a14
commit ae8f851b06
12 changed files with 46 additions and 32 deletions
+6 -4
View File
@@ -122,10 +122,12 @@ InitialView::InitialView( QWidget *parent )
this, SLOT ( slotConnectClicked() ) );
connect( rememberAccountCheckBox_, SIGNAL( stateChanged(int) ),
this, SLOT ( rememberAccountStateChanged(int) ) );
connect( forgottenPasswordLabel_, SIGNAL( leftClickedUrl(const QString&) ),
this, SLOT ( slotClickedUrl(const QString&) ) );
connect( newAccountLabel_, SIGNAL( leftClickedUrl(const QString&) ),
this, SLOT ( slotClickedUrl(const QString&) ) );
connect( forgottenPasswordLabel_, &KUrlLabel::leftClickedUrl, this, [this]() {
slotClickedUrl( forgottenPasswordLabel_->url() );
} );
connect( newAccountLabel_, &KUrlLabel::leftClickedUrl, this, [this]() {
slotClickedUrl( newAccountLabel_->url() );
} );
connect( statusLabel_, SIGNAL( linkActivated(const QString&) ),
this, SLOT ( slotClickedUrl(const QString&) ) );
connect( rememberPasswordCheckBox_, SIGNAL( stateChanged(int) ),