mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
Fix minor typos
This commit is contained in:
parent
b9fb0516aa
commit
a1021e4d3c
3 changed files with 3 additions and 3 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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');
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue