Fix KF6 runtime integration warnings
This commit is contained in:
+6
-4
@@ -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) ),
|
||||
|
||||
Reference in New Issue
Block a user