diff --git a/dialer/src/call-manager.cpp b/dialer/src/call-manager.cpp index 234345ec..cb76b4ac 100644 --- a/dialer/src/call-manager.cpp +++ b/dialer/src/call-manager.cpp @@ -112,7 +112,7 @@ void CallManager::onCallStateChanged(Tp::CallState state) if (d->callChannel->isRequested()) { d->dialerUtils->setCallState("dialing"); - //show status that the call is conneting + //show status that the call is connecting // ensureCallWindow(); // d->callWindow.data()->setStatus(CallWindow::StatusConnecting); } else { diff --git a/dialer/src/qml/main.qml b/dialer/src/qml/main.qml index c19503f8..d5402ba4 100644 --- a/dialer/src/qml/main.qml +++ b/dialer/src/qml/main.qml @@ -133,7 +133,7 @@ ApplicationWindow { db.transaction( function(tx) { // Create the database if it doesn't already exist - //callType: wether is incoming, outgoing, unanswered + //callType: whether is incoming, outgoing, unanswered tx.executeSql('CREATE TABLE IF NOT EXISTS History(id INTEGER PRIMARY KEY AUTOINCREMENT, number TEXT, time DATETIME, duration INTEGER, callType INTEGER)'); var rs = tx.executeSql('SELECT * FROM History'); diff --git a/shell/contents/views/Desktop.qml b/shell/contents/views/Desktop.qml index 5256923b..964762ee 100644 --- a/shell/contents/views/Desktop.qml +++ b/shell/contents/views/Desktop.qml @@ -80,7 +80,7 @@ Item { id: activitiesLayout height: activitiesView.height spacing: 0 - //don't try to do anything until we are well setted up + //don't try to do anything until we are well set up property bool loadCompleted: root.loadCompleted && width == activitiesView.width * (activitiesLayout.children.length - 1) && activitiesLayout.children.length == activityRepeater.count + 1 onLoadCompletedChanged: activitiesView.currentIndexChanged();