aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.qmake.conf2
-rw-r--r--src/effects/DirectionalBlur.qml2
-rw-r--r--src/effects/DropShadow.qml2
-rw-r--r--src/effects/GaussianBlur.qml2
-rw-r--r--src/effects/Glow.qml2
-rw-r--r--src/effects/private/qgfxsourceproxy_p.h2
6 files changed, 6 insertions, 6 deletions
diff --git a/.qmake.conf b/.qmake.conf
index 0338efe..dc68d38 100644
--- a/.qmake.conf
+++ b/.qmake.conf
@@ -1,3 +1,3 @@
load(qt_build_config)
-MODULE_VERSION = 5.10.1
+MODULE_VERSION = 5.11.0
diff --git a/src/effects/DirectionalBlur.qml b/src/effects/DirectionalBlur.qml
index 6965a52..7525dbc 100644
--- a/src/effects/DirectionalBlur.qml
+++ b/src/effects/DirectionalBlur.qml
@@ -85,7 +85,7 @@ Item {
property variant source
/*!
- This property defines the percieved amount of movement for each pixel.
+ This property defines the perceived amount of movement for each pixel.
The movement is divided evenly to both sides of each pixel.
The quality of the blur depends on \l{DirectionalBlur::samples}{samples}
diff --git a/src/effects/DropShadow.qml b/src/effects/DropShadow.qml
index 065a489..0668a80 100644
--- a/src/effects/DropShadow.qml
+++ b/src/effects/DropShadow.qml
@@ -104,7 +104,7 @@ Item {
Radius defines the softness of the shadow. A larger radius causes the
edges of the shadow to appear more blurry.
- The ideal blur is acheived by selecting \c samples and \c radius such
+ The ideal blur is achieved by selecting \c samples and \c radius such
that \c {samples = 1 + radius * 2}, such as:
\table
diff --git a/src/effects/GaussianBlur.qml b/src/effects/GaussianBlur.qml
index a9999a8..579682a 100644
--- a/src/effects/GaussianBlur.qml
+++ b/src/effects/GaussianBlur.qml
@@ -92,7 +92,7 @@ Item {
affect the blurring of an individual pixel. A larger radius increases
the blur effect.
- The ideal blur is acheived by selecting \c samples and \c radius such
+ The ideal blur is achieved by selecting \c samples and \c radius such
that \c {samples = 1 + radius * 2}, such as:
\table
diff --git a/src/effects/Glow.qml b/src/effects/Glow.qml
index 73ea4cf..f8d7bc0 100644
--- a/src/effects/Glow.qml
+++ b/src/effects/Glow.qml
@@ -105,7 +105,7 @@ Item {
Depending on the radius value, value of the \l{Glow::samples}{samples}
should be set to sufficiently large to ensure the visual quality.
- The ideal blur is acheived by selecting \c samples and \c radius such
+ The ideal blur is achieved by selecting \c samples and \c radius such
that \c {samples = 1 + radius * 2}, such as:
\table
diff --git a/src/effects/private/qgfxsourceproxy_p.h b/src/effects/private/qgfxsourceproxy_p.h
index 9b84bc7..4fde8b2 100644
--- a/src/effects/private/qgfxsourceproxy_p.h
+++ b/src/effects/private/qgfxsourceproxy_p.h
@@ -84,7 +84,7 @@ public:
Interpolation interpolation() const { return m_interpolation; }
protected:
- void updatePolish() Q_DECL_OVERRIDE;
+ void updatePolish() override;
signals:
void inputChanged();