Skip to content

Commit 49b415b

Browse files
committed
Use function pointer instead of name
1 parent 247beeb commit 49b415b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gui/owncloudsetupwizard.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ void OwncloudSetupWizard::slotCheckServer(const QString &urlString)
112112
// We want to reset the QNAM proxy so that the global proxy settings are used (via ClientProxy settings)
113113
account->networkAccessManager()->setProxy(QNetworkProxy(QNetworkProxy::DefaultProxy));
114114
// use a queued invocation so we're as asynchronous as with the other code path
115-
QMetaObject::invokeMethod(this, "slotFindServer", Qt::QueuedConnection);
115+
QMetaObject::invokeMethod(this, &OwncloudSetupWizard::slotFindServer, Qt::QueuedConnection);
116116
}
117117
}
118118

0 commit comments

Comments
 (0)