mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 04:55:48 +03:00
Fix some compiler warnings
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
50cd6af394
commit
302ca0e04e
3 changed files with 3 additions and 4 deletions
|
@ -41,14 +41,13 @@ WebFlowCredentialsDialog::WebFlowCredentialsDialog(Account *account, bool useFlo
|
|||
_errorLabel->hide();
|
||||
_layout->addWidget(_errorLabel);
|
||||
|
||||
Theme *theme = Theme::instance();
|
||||
WizardCommon::initErrorLabel(_errorLabel);
|
||||
|
||||
setLayout(_layout);
|
||||
}
|
||||
|
||||
void WebFlowCredentialsDialog::closeEvent(QCloseEvent* e) {
|
||||
Q_UNUSED(e);
|
||||
Q_UNUSED(e)
|
||||
|
||||
if (_webView) {
|
||||
// Force calling WebView::~WebView() earlier so that _profile and _page are
|
||||
|
|
|
@ -24,7 +24,7 @@ public:
|
|||
void setInfo(const QString &msg);
|
||||
void setError(const QString &error);
|
||||
|
||||
const bool isUsingFlow2() const {
|
||||
bool isUsingFlow2() const {
|
||||
return _useFlow2;
|
||||
}
|
||||
|
||||
|
|
|
@ -104,11 +104,11 @@ private:
|
|||
#ifndef NO_SHIBBOLETH
|
||||
OwncloudShibbolethCredsPage *_shibbolethCredsPage;
|
||||
#endif
|
||||
Flow2AuthCredsPage *_flow2CredsPage;
|
||||
OwncloudAdvancedSetupPage *_advancedSetupPage;
|
||||
OwncloudWizardResultPage *_resultPage;
|
||||
AbstractCredentialsWizardPage *_credentialsPage;
|
||||
WebViewPage *_webViewPage;
|
||||
Flow2AuthCredsPage *_flow2CredsPage;
|
||||
|
||||
QStringList _setupLog;
|
||||
|
||||
|
|
Loading…
Reference in a new issue