summaryrefslogtreecommitdiffstats
path: root/installerbuilder
diff options
context:
space:
mode:
authorNiels Weber <niels.2.weber@nokia.com>2011-08-22 10:11:56 +0200
committerKarsten Heimrich <karsten.heimrich@nokia.com>2011-08-22 11:11:58 +0200
commitc258796ccc2bf27f6bd71cfacacc14f4438debf0 (patch)
tree5b394bfaba84575142870a3e3e6e26762f711277 /installerbuilder
parentd133f37a9f8353797c7223dc5d51974746fcc977 (diff)
comment fixes
Change-Id: Ia1da1c74987e55eecb5d9424f0783055e2eb614d Reviewed-on: http://codereview.qt.nokia.com/3295 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Karsten Heimrich <karsten.heimrich@nokia.com>
Diffstat (limited to 'installerbuilder')
-rw-r--r--installerbuilder/libinstaller/packagemanagercore.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/installerbuilder/libinstaller/packagemanagercore.cpp b/installerbuilder/libinstaller/packagemanagercore.cpp
index 48f145ee9..7da2b44bd 100644
--- a/installerbuilder/libinstaller/packagemanagercore.cpp
+++ b/installerbuilder/libinstaller/packagemanagercore.cpp
@@ -336,7 +336,7 @@ quint64 PackageManagerCore::requiredTemporaryDiskSpace() const
}
/*!
- Returns the count of archives that will be downloaded
+ Returns the count of archives that will be downloaded.
*/
int PackageManagerCore::downloadNeededArchives(double partProgressSize)
{
@@ -733,8 +733,8 @@ void PackageManagerCore::addRepositories(const QList<Repository> &repositories)
}
/*!
- Sets additional repository for this instance of the installer or updater
- Will be removed after invoking it again
+ Sets additional repository for this instance of the installer or updater.
+ Will be removed after invoking it again.
*/
void PackageManagerCore::setTemporaryRepositories(const QList<Repository> &repositories, bool replace)
{
@@ -742,7 +742,7 @@ void PackageManagerCore::setTemporaryRepositories(const QList<Repository> &repos
}
/*!
- checks if the downloader should try to download sha1 checksums for archives
+ Checks if the downloader should try to download sha1 checksums for archives.
*/
bool PackageManagerCore::testChecksum() const
{
@@ -750,7 +750,7 @@ bool PackageManagerCore::testChecksum() const
}
/*!
- Defines if the downloader should try to download sha1 checksums for archives
+ Defines if the downloader should try to download sha1 checksums for archives.
*/
void PackageManagerCore::setTestChecksum(bool test)
{
@@ -869,8 +869,8 @@ Component* PackageManagerCore::componentByName(const QString &name) const
}
/*!
- Calculates a ordered list of components to install based on the current run mode. Also auto installed
- depenedencies are resolved.
+ Calculates an ordered list of components to install based on the current run mode. Also auto installed
+ dependencies are resolved.
*/
bool PackageManagerCore::calculateComponentsToInstall() const
{
@@ -1161,7 +1161,7 @@ QString PackageManagerCore::findPath(const QString &name, const QStringList &pat
}
/*!
- sets the "installerbase" binary to use when writing the package manager/uninstaller.
+ Sets the "installerbase" binary to use when writing the package manager/uninstaller.
Set this if an update to installerbase is available.
If not set, the executable segment of the running un/installer will be used.
*/
@@ -1492,7 +1492,7 @@ bool PackageManagerCore::updateComponentData(struct Data &data, Component *compo
void PackageManagerCore::storeReplacedComponents(QHash<QString, Component*> &components, const struct Data &data)
{
QHash<Component*, QStringList>::const_iterator it;
- // remeber all components that got a replacement, requierd for uninstall
+ // remember all components that got a replacement, required for uninstall
for (it = data.replacementToExchangeables.constBegin(); it != data.replacementToExchangeables.constEnd(); ++it) {
foreach (const QString &componentName, it.value()) {
Component *component = components.take(componentName);