Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2018-04-23 13:51:58 +0300
committerOlivier Goffart <ogoffart@woboq.com>2018-04-23 14:22:01 +0300
commite0b554ada96b2d96d252a0bfde9c807acbde90a3 (patch)
tree150073a039f1ca5815b0366849aa64b12e965ece /src/gui/networksettings.h
parent1508b562ad257fcf914e03b7ab1ac330023cee68 (diff)
Fix a bunch of warning with clang
The option -Wno-discarded-qualifiers only exists with GCC, clang warns that it has no effects. Also it warns when some virtual fuction are marked with override but not all of them.
Diffstat (limited to 'src/gui/networksettings.h')
-rw-r--r--src/gui/networksettings.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/networksettings.h b/src/gui/networksettings.h
index c9d77e3bb..8d35b14dc 100644
--- a/src/gui/networksettings.h
+++ b/src/gui/networksettings.h
@@ -35,7 +35,7 @@ class NetworkSettings : public QWidget
public:
explicit NetworkSettings(QWidget *parent = 0);
~NetworkSettings();
- QSize sizeHint() const;
+ QSize sizeHint() const override;
private slots:
void saveProxySettings();