summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNico Vertriest <nico.vertriest@digia.com>2015-09-08 13:40:25 +0200
committerNico Vertriest <nico.vertriest@digia.com>2015-09-09 12:29:21 +0000
commitbf36ed32ade5937f7a9a90cb74a93132abb183f4 (patch)
tree8f1b99dc2c1229e145c4fd79122b4e1c7f29f521
parent4564e476d663c8b6170a5fc68d83306d8835b27b (diff)
downloadqtgraphicaleffects-bf36ed32ade5937f7a9a90cb74a93132abb183f4.tar.gz
Doc: minor link issues
Change-Id: I61c44a8b5e8f72886e46d55f638b9fa392aaeec7 Task-number: QTBUG-43810 Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com> Reviewed-by: Martin Smith <martin.smith@digia.com>
-rw-r--r--src/effects/Colorize.qml4
-rw-r--r--src/effects/ConicalGradient.qml4
-rw-r--r--src/effects/DirectionalBlur.qml4
-rw-r--r--src/effects/FastBlur.qml2
-rw-r--r--src/effects/HueSaturation.qml2
-rw-r--r--src/effects/InnerShadow.qml4
-rw-r--r--src/effects/RadialBlur.qml8
-rw-r--r--src/effects/RectangularGlow.qml2
-rw-r--r--src/effects/RecursiveBlur.qml4
-rw-r--r--src/effects/ZoomBlur.qml8
10 files changed, 21 insertions, 21 deletions
diff --git a/src/effects/Colorize.qml b/src/effects/Colorize.qml
index 7a95125..ae018f7 100644
--- a/src/effects/Colorize.qml
+++ b/src/effects/Colorize.qml
@@ -53,10 +53,10 @@ import QtGraphicalEffects.private 1.0
of a grayscale image. Colorize uses the hue, saturation, and lightness (HSL)
color space. You can specify a desired value for each property. You can
shift all HSL values with the
- \l{QtGraphicalEffects1::HueSaturation}{HueSaturation} effect.
+ \l{QtGraphicalEffects::HueSaturation}{HueSaturation} effect.
Alternatively, you can use the
- \l{QtGraphicalEffects1::ColorOverlay}{ColorOverlay} effect to colorize the
+ \l{QtGraphicalEffects::ColorOverlay}{ColorOverlay} effect to colorize the
source item in the RGBA color space.
\table
diff --git a/src/effects/ConicalGradient.qml b/src/effects/ConicalGradient.qml
index d0ca1df..d64ecf6 100644
--- a/src/effects/ConicalGradient.qml
+++ b/src/effects/ConicalGradient.qml
@@ -118,8 +118,8 @@ Item {
property real angle: 0.0
/*!
- \qmlproperty real QtGraphicalEffects1::ConicalGradient::horizontalOffset
- \qmlproperty real QtGraphicalEffects1::ConicalGradient::verticalOffset
+ \qmlproperty real QtGraphicalEffects::ConicalGradient::horizontalOffset
+ \qmlproperty real QtGraphicalEffects::ConicalGradient::verticalOffset
The horizontalOffset and verticalOffset properties define the offset in
pixels for the center point of the gradient compared to the item center.
diff --git a/src/effects/DirectionalBlur.qml b/src/effects/DirectionalBlur.qml
index 8f571e6..9da6ae7 100644
--- a/src/effects/DirectionalBlur.qml
+++ b/src/effects/DirectionalBlur.qml
@@ -54,8 +54,8 @@ import QtGraphicalEffects.private 1.0
each pixel, therefore setting the direction to 0 and 180 provides the
same result.
- Other available motionblur effects are \l{QtGraphicalEffects1::ZoomBlur}{ZoomBlur} and
- \l{QtGraphicalEffects1::RadialBlur}{RadialBlur}.
+ Other available motionblur effects are \l{QtGraphicalEffects::ZoomBlur}{ZoomBlur} and
+ \l{QtGraphicalEffects::RadialBlur}{RadialBlur}.
\table
\header
diff --git a/src/effects/FastBlur.qml b/src/effects/FastBlur.qml
index adb882c..a1eaec0 100644
--- a/src/effects/FastBlur.qml
+++ b/src/effects/FastBlur.qml
@@ -50,7 +50,7 @@ import QtGraphicalEffects.private 1.0
\brief Applies a fast blur effect to one or more source items.
FastBlur offers lower blur quality than
- \l{QtGraphicalEffects1::GaussianBlur}{GaussianBlur}, but it is faster to
+ \l{QtGraphicalEffects::GaussianBlur}{GaussianBlur}, but it is faster to
render. The FastBlur effect softens the source content by blurring it with
algorithm which uses the source content downscaling and bilinear filtering.
Use this effect in situations where the source content is rapidly changing
diff --git a/src/effects/HueSaturation.qml b/src/effects/HueSaturation.qml
index b08c6bf..6b5cd5b 100644
--- a/src/effects/HueSaturation.qml
+++ b/src/effects/HueSaturation.qml
@@ -49,7 +49,7 @@ import QtGraphicalEffects.private 1.0
\ingroup qtgraphicaleffects-color
\brief Alters the source item colors in the HSL color space.
- HueSaturation is similar to the \l{QtGraphicalEffects1::Colorize}{Colorize}
+ HueSaturation is similar to the \l{QtGraphicalEffects::Colorize}{Colorize}
effect, but the hue and saturation property values are handled differently.
The HueSaturation effect always shifts the hue, saturation, and lightness
from the original, instead of setting them.
diff --git a/src/effects/InnerShadow.qml b/src/effects/InnerShadow.qml
index de59781..e5f6294 100644
--- a/src/effects/InnerShadow.qml
+++ b/src/effects/InnerShadow.qml
@@ -241,8 +241,8 @@ Item {
property color color: "black"
/*!
- \qmlproperty real QtGraphicalEffects1::InnerShadow::horizontalOffset
- \qmlproperty real QtGraphicalEffects1::InnerShadow::verticalOffset
+ \qmlproperty real QtGraphicalEffects::InnerShadow::horizontalOffset
+ \qmlproperty real QtGraphicalEffects::InnerShadow::verticalOffset
HorizontalOffset and verticalOffset properties define the offset for the
rendered shadow compared to the InnerShadow item position. Often, the
diff --git a/src/effects/RadialBlur.qml b/src/effects/RadialBlur.qml
index e857438..a2ffd27 100644
--- a/src/effects/RadialBlur.qml
+++ b/src/effects/RadialBlur.qml
@@ -54,8 +54,8 @@ import QtGraphicalEffects.private 1.0
rotating to the direction of the blur.
Other available motionblur effects are
- \l{QtGraphicalEffects1::ZoomBlur}{ZoomBlur} and
- \l{QtGraphicalEffects1::DirectionalBlur}{DirectionalBlur}.
+ \l{QtGraphicalEffects::ZoomBlur}{ZoomBlur} and
+ \l{QtGraphicalEffects::DirectionalBlur}{DirectionalBlur}.
\table
\header
@@ -136,8 +136,8 @@ Item {
property int samples: 0
/*!
- \qmlproperty real QtGraphicalEffects1::RadialBlur::horizontalOffset
- \qmlproperty real QtGraphicalEffects1::RadialBlur::verticalOffset
+ \qmlproperty real QtGraphicalEffects::RadialBlur::horizontalOffset
+ \qmlproperty real QtGraphicalEffects::RadialBlur::verticalOffset
These properties define the offset in pixels for the perceived center
point of the rotation.
diff --git a/src/effects/RectangularGlow.qml b/src/effects/RectangularGlow.qml
index 8ed1ac7..740aff4 100644
--- a/src/effects/RectangularGlow.qml
+++ b/src/effects/RectangularGlow.qml
@@ -52,7 +52,7 @@ import QtGraphicalEffects.private 1.0
This effect is intended to have good performance. The shape of the glow is
limited to a rectangle with a custom corner radius. For situations where
- custom shapes are required, consider \l {QtGraphicalEffects1::Glow} {Glow}
+ custom shapes are required, consider \l {QtGraphicalEffects::Glow} {Glow}
effect.
\table
diff --git a/src/effects/RecursiveBlur.qml b/src/effects/RecursiveBlur.qml
index 87c0681..5e537b5 100644
--- a/src/effects/RecursiveBlur.qml
+++ b/src/effects/RecursiveBlur.qml
@@ -52,8 +52,8 @@ import QtGraphicalEffects.private 1.0
The RecursiveBlur effect softens the image by blurring it with an algorithm
that uses a recursive feedback loop to blur the source multiple times. The
effect may give more blurry results than
- \l{QtGraphicalEffects1::GaussianBlur}{GaussianBlur} or
- \l{QtGraphicalEffects1::FastBlur}{FastBlur}, but the result is produced
+ \l{QtGraphicalEffects::GaussianBlur}{GaussianBlur} or
+ \l{QtGraphicalEffects::FastBlur}{FastBlur}, but the result is produced
asynchronously and takes more time.
\table
diff --git a/src/effects/ZoomBlur.qml b/src/effects/ZoomBlur.qml
index 77f0f9f..2d08208 100644
--- a/src/effects/ZoomBlur.qml
+++ b/src/effects/ZoomBlur.qml
@@ -52,8 +52,8 @@ import QtGraphicalEffects.private 1.0
Effect creates perceived impression that the source item appears to be
moving towards the center point in Z-direction or that the camera appears
to be zooming rapidly. Other available motion blur effects are
- \l{QtGraphicalEffects1::DirectionalBlur}{DirectionalBlur}
- and \l{QtGraphicalEffects1::RadialBlur}{RadialBlur}.
+ \l{QtGraphicalEffects::DirectionalBlur}{DirectionalBlur}
+ and \l{QtGraphicalEffects::RadialBlur}{RadialBlur}.
\table
\header
@@ -138,8 +138,8 @@ Item {
property int samples: 0
/*!
- \qmlproperty real QtGraphicalEffects1::ZoomBlur::horizontalOffset
- \qmlproperty real QtGraphicalEffects1::ZoomBlur::verticalOffset
+ \qmlproperty real QtGraphicalEffects::ZoomBlur::horizontalOffset
+ \qmlproperty real QtGraphicalEffects::ZoomBlur::verticalOffset
These properties define an offset in pixels for the blur direction
center point.