summaryrefslogtreecommitdiffstats
path: root/installerbuilder
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@nokia.com>2011-07-27 14:04:15 +0200
committerTim Jenssen <tim.jenssen@nokia.com>2011-07-27 14:26:14 +0200
commitf6406cbf70b3110ebdbd90faa7bbc842c55fba7e (patch)
tree5fd4f6e9966341eed01b183e2793da23edd2aeda /installerbuilder
parent9d88e5516733f6a1f1165040361b009e0f1da454 (diff)
improved spelling and verbose output
Reviewed-By: Niels Weber
Diffstat (limited to 'installerbuilder')
-rw-r--r--installerbuilder/libinstaller/messageboxhandler.cpp2
-rw-r--r--installerbuilder/libinstaller/packagemanagercore_p.cpp6
2 files changed, 4 insertions, 4 deletions
diff --git a/installerbuilder/libinstaller/messageboxhandler.cpp b/installerbuilder/libinstaller/messageboxhandler.cpp
index d23b26aed..5f7d02b10 100644
--- a/installerbuilder/libinstaller/messageboxhandler.cpp
+++ b/installerbuilder/libinstaller/messageboxhandler.cpp
@@ -301,6 +301,6 @@ QMessageBox::StandardButton MessageBoxHandler::showMessageBox(MessageType messag
return autoReply(buttons);
}
- Q_ASSERT_X(false, Q_FUNC_INFO, "Something went realy wrong.");
+ Q_ASSERT_X(false, Q_FUNC_INFO, "Something went really wrong.");
return button;
}
diff --git a/installerbuilder/libinstaller/packagemanagercore_p.cpp b/installerbuilder/libinstaller/packagemanagercore_p.cpp
index 6f9a6fb95..5eabce8dc 100644
--- a/installerbuilder/libinstaller/packagemanagercore_p.cpp
+++ b/installerbuilder/libinstaller/packagemanagercore_p.cpp
@@ -350,8 +350,8 @@ bool PackageManagerCorePrivate::appendComponentsToInstall(const QList<Component*
QString dependencyWay = currentComponent->name() + QLatin1String("->") + dependencyComponentName;
if (m_visitedDependencies.contains(dependencyWay)) {
- QString errorMessage = QString(QLatin1String(
- "Can't install any more component, because no one has no or resolved dependencies."));
+ QString errorMessage = QString(QLatin1String("Unable to install any further"
+ "components because there are none available that have no or only fulfilled dependencies."));
verbose() << qPrintable(errorMessage) << std::endl;
foreach (Component *currentComponent, components){
verbose() << "\t" << currentComponent->name();
@@ -395,7 +395,7 @@ bool PackageManagerCorePrivate::appendComponentsToInstall(const QList<Component*
}
break;
} default:
- Q_ASSERT_X(false, Q_FUNC_INFO, "Something went realy wrong!");
+ Q_ASSERT_X(false, Q_FUNC_INFO, "Something went really wrong!");
return false;
}
}