Fix minor typos

This commit is contained in:
Yuri Chornoivan 2019-11-07 17:51:34 +02:00
parent b9fb0516aa
commit a1021e4d3c
3 changed files with 3 additions and 3 deletions

View file

@ -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 {

View file

@ -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');

View file

@ -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();