aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@digia.com>2013-09-26 10:38:58 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-26 13:10:28 +0200
commitc4115a247a16fcbb96cc26d19117282860f74a38 (patch)
treec2bf264bdae39d1fc480f54d9cfabfea0445d111 /src
parent0794c6e552c2df6c7531f7657f276e3c7f90976d (diff)
Rename QML JumpLink/Destination to JumpListLink/Destination
Change-Id: If7e761e435e75c218f50c50f8940428bb8c14a23 Reviewed-by: Ivan Vizir <define-true-false@yandex.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Diffstat (limited to 'src')
-rw-r--r--src/imports/winextras/JumpListDestination.qml (renamed from src/imports/winextras/JumpDestination.qml)6
-rw-r--r--src/imports/winextras/JumpListLink.qml (renamed from src/imports/winextras/JumpLink.qml)14
-rw-r--r--src/imports/winextras/qmldir4
-rw-r--r--src/imports/winextras/winextras.pro8
4 files changed, 16 insertions, 16 deletions
diff --git a/src/imports/winextras/JumpDestination.qml b/src/imports/winextras/JumpListDestination.qml
index b06d57b..846028a 100644
--- a/src/imports/winextras/JumpDestination.qml
+++ b/src/imports/winextras/JumpListDestination.qml
@@ -42,7 +42,7 @@
import QtWinExtras 1.0
/*!
- \qmltype JumpDestination
+ \qmltype JumpListDestination
\inherits JumpListItem
\inqmlmodule QtWinExtras
@@ -50,7 +50,7 @@ import QtWinExtras 1.0
\since QtWinExtras 1.0
- The JumpDestination type contains a path to a file that users can select
+ The JumpListDestination type contains a path to a file that users can select
from a Jump List to view or edit it with an application.
*/
@@ -59,7 +59,7 @@ JumpListItem {
__jumpListItemType: JumpListItem.ItemTypeDestination
/*!
- \qmlproperty string JumpDestination::filePath
+ \qmlproperty string JumpListDestination::filePath
The path to the file.
*/
diff --git a/src/imports/winextras/JumpLink.qml b/src/imports/winextras/JumpListLink.qml
index 119266c..cb7fd80 100644
--- a/src/imports/winextras/JumpLink.qml
+++ b/src/imports/winextras/JumpListLink.qml
@@ -42,7 +42,7 @@
import QtWinExtras 1.0
/*!
- \qmltype JumpLink
+ \qmltype JumpListLink
\inherits JumpListItem
\inqmlmodule QtWinExtras
@@ -50,7 +50,7 @@ import QtWinExtras 1.0
\since QtWinExtras 1.0
- The JumpLink type represents a command to execute an application.
+ The JumpListLink type represents a command to execute an application.
*/
@@ -58,35 +58,35 @@ JumpListItem {
__jumpListItemType: JumpListItem.ItemTypeLink
/*!
- \qmlproperty string JumpLink::iconPath
+ \qmlproperty string JumpListLink::iconPath
The path to a link icon.
*/
property string iconPath
/*!
- \qmlproperty string JumpLink::executablePath
+ \qmlproperty string JumpListLink::executablePath
The path to an executable file.
*/
property string executablePath
/*!
- \qmlproperty string JumpLink::arguments
+ \qmlproperty string JumpListLink::arguments
Command-line arguments.
*/
property string arguments
/*!
- \qmlproperty string JumpLink::description
+ \qmlproperty string JumpListLink::description
The description of the link.
*/
property string description
/*!
- \qmlproperty string JumpLink::title
+ \qmlproperty string JumpListLink::title
The title of the link.
*/
diff --git a/src/imports/winextras/qmldir b/src/imports/winextras/qmldir
index d488e01..bcba196 100644
--- a/src/imports/winextras/qmldir
+++ b/src/imports/winextras/qmldir
@@ -1,5 +1,5 @@
module QtWinExtras
plugin qml_winextras
-JumpLink 1.0 JumpLink.qml
-JumpDestination 1.0 JumpDestination.qml
+JumpListLink 1.0 JumpListLink.qml
+JumpListDestination 1.0 JumpListDestination.qml
JumpListSeparator 1.0 JumpListSeparator.qml
diff --git a/src/imports/winextras/winextras.pro b/src/imports/winextras/winextras.pro
index 0f574f4..869c622 100644
--- a/src/imports/winextras/winextras.pro
+++ b/src/imports/winextras/winextras.pro
@@ -6,8 +6,8 @@ IMPORT_VERSION = 1.0
QT += qml quick winextras winextras-private
QML_FILES += \
- JumpLink.qml \
- JumpDestination.qml \
+ JumpListLink.qml \
+ JumpListDestination.qml \
JumpListSeparator.qml
HEADERS += \
@@ -34,8 +34,8 @@ SOURCES += \
OTHER_FILES += \
qmldir \
- JumpLink.qml \
- JumpDestination.qml \
+ JumpListLink.qml \
+ JumpListDestination.qml \
JumpListSeparator.qml
load(qml_plugin)