summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/qtlandmarksdocsample/qtlandmarksdocsample.cpp
diff options
context:
space:
mode:
authorDavid Laing <david.laing@nokia.com>2010-11-24 13:21:18 +1000
committerDavid Laing <david.laing@nokia.com>2010-11-24 13:21:18 +1000
commit651031558cf806972a090fafb25a033250c7d875 (patch)
tree36a56bc62e435c6c5a94b2717ea3e03449551d78 /doc/src/snippets/qtlandmarksdocsample/qtlandmarksdocsample.cpp
parent15c61b300afd25cf1945b38b0b3a9b4b6b57304b (diff)
Fixed spelling errors in Location comments.
Diffstat (limited to 'doc/src/snippets/qtlandmarksdocsample/qtlandmarksdocsample.cpp')
-rw-r--r--doc/src/snippets/qtlandmarksdocsample/qtlandmarksdocsample.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/src/snippets/qtlandmarksdocsample/qtlandmarksdocsample.cpp b/doc/src/snippets/qtlandmarksdocsample/qtlandmarksdocsample.cpp
index 1884b364bf..f6df61f026 100644
--- a/doc/src/snippets/qtlandmarksdocsample/qtlandmarksdocsample.cpp
+++ b/doc/src/snippets/qtlandmarksdocsample/qtlandmarksdocsample.cpp
@@ -91,7 +91,7 @@ void RequestExample::categorySaveRequestHandler(QLandmarkAbstractRequest::State
{
if (state == QLandmarkAbstractRequest::FinishedState) {
if (catSaveRequest->error() == QLandmarkManager::NoError) {
- qDebug() << "Category save succesfully completed";
+ qDebug() << "Category save successfully completed";
}
else {
qDebug() << "Category save was unsuccessful";
@@ -134,7 +134,7 @@ void RequestExample::landmarkSaveRequestHandler(QLandmarkAbstractRequest::State
{
if (state == QLandmarkAbstractRequest::FinishedState) {
if (lmSaveRequest->error() == QLandmarkManager::NoError) {
- qDebug() << "Landmark save succesfully completed";
+ qDebug() << "Landmark save successfully completed";
}
else {
qDebug() << "Landmark save was unsuccessful";
@@ -168,7 +168,7 @@ void RequestExample::categoryFetchRequestHandler(QLandmarkAbstractRequest::State
if (state == QLandmarkAbstractRequest::FinishedState) {
if (catFetchRequest->error() == QLandmarkManager::NoError) {
QList<QLandmarkCategory> categories = catFetchRequest->categories();
- qDebug() << "Category fetch succesfully completed";
+ qDebug() << "Category fetch successfully completed";
for(int i=0; i < categories.count(); ++i) {
qDebug() << categories[i].name();
}
@@ -213,7 +213,7 @@ void RequestExample::landmarkFetchRequestHandler(QLandmarkAbstractRequest::State
if (state == QLandmarkAbstractRequest::FinishedState) {
previousLastIndex = 0;
if (lmFetchRequest->error() == QLandmarkManager::NoError) {
- qDebug() << "Landmark fetch succesfully completed";
+ qDebug() << "Landmark fetch successfully completed";
QList<QLandmark> landmarks = lmFetchRequest->landmarks();
for(int i=0; i < landmarks.count(); ++i) {
qDebug() << landmarks[i].name();
@@ -250,7 +250,7 @@ void RequestExample::categoryRemoveRequestHandler(QLandmarkAbstractRequest::Stat
{
if (state == QLandmarkAbstractRequest::FinishedState) {
if (catRemoveRequest->error() == QLandmarkManager::NoError) {
- qDebug() << "Category remove succesfully completed";
+ qDebug() << "Category remove successfully completed";
}
else {
qDebug() << "Category remove was unsuccessful";
@@ -280,7 +280,7 @@ void RequestExample::landmarkRemoveRequestHandler(QLandmarkAbstractRequest::Stat
{
if (state == QLandmarkAbstractRequest::FinishedState) {
if (lmRemoveRequest->error() == QLandmarkManager::NoError) {
- qDebug() << "Landmark removal succesfully completed";
+ qDebug() << "Landmark removal successfully completed";
}
else {
qDebug() << "Landmark removal was unsuccessful";
@@ -532,7 +532,7 @@ void RequestExample::landmarkImportRequestHandler(QLandmarkAbstractRequest::Stat
{
if (state == QLandmarkAbstractRequest::FinishedState) {
if (lmImportRequest->error() == QLandmarkManager::NoError) {
- qDebug() << "Landmark import succesfully completed";
+ qDebug() << "Landmark import successfully completed";
}
else {
qDebug() << "Landmark import was unsuccessful";
@@ -568,7 +568,7 @@ void RequestExample::landmarkExportRequestHandler(QLandmarkAbstractRequest::Stat
{
if (state == QLandmarkAbstractRequest::FinishedState) {
if (lmExportRequest->error() == QLandmarkManager::NoError) {
- qDebug() << "Landmark export succesfully completed";
+ qDebug() << "Landmark export successfully completed";
}
else {
qDebug() << "Landmark export was unsuccessful";