summaryrefslogtreecommitdiffstats
path: root/src/libs/installer/component.cpp
diff options
context:
space:
mode:
authorjkobus <jaroslaw.kobus@digia.com>2014-07-02 12:38:39 +0200
committerJarek Kobus <jaroslaw.kobus@digia.com>2014-07-03 12:20:32 +0200
commitd847723173a5cd2bb2eb27ff0eb45ae323c8070a (patch)
tree01cf03e2a45eaf546710bc5234abdcf028c166de /src/libs/installer/component.cpp
parentabca171c2ac3d926eb573b48debfc9714ea47ef6 (diff)
Rename pathes -> paths
Change-Id: I9ad2e5eba7df180dec63ec171d5260c01d9715b2 Reviewed-by: Niels Weber <niels.weber@digia.com> Reviewed-by: Kai Koehne <kai.koehne@digia.com>
Diffstat (limited to 'src/libs/installer/component.cpp')
-rw-r--r--src/libs/installer/component.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/libs/installer/component.cpp b/src/libs/installer/component.cpp
index 6c507ad99..bb9332f2b 100644
--- a/src/libs/installer/component.cpp
+++ b/src/libs/installer/component.cpp
@@ -765,18 +765,16 @@ void Component::createOperations()
*/
void Component::registerPathForUninstallation(const QString &path, bool wipe)
{
- d->m_pathesForUninstallation.append(qMakePair(path, wipe));
+ d->m_pathsForUninstallation.append(qMakePair(path, wipe));
}
/*!
- \qmlmethod QList<QPair<string, boolean> > Component::pathesForUninstallation()
-
Returns the list of paths previously registered for uninstallation with
#registerPathForUninstallation.
*/
-QList<QPair<QString, bool> > Component::pathesForUninstallation() const
+QList<QPair<QString, bool> > Component::pathsForUninstallation() const
{
- return d->m_pathesForUninstallation;
+ return d->m_pathsForUninstallation;
}
/*!