mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 22:33:08 +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()) {
|
if (d->callChannel->isRequested()) {
|
||||||
d->dialerUtils->setCallState("dialing");
|
d->dialerUtils->setCallState("dialing");
|
||||||
|
|
||||||
//show status that the call is conneting
|
//show status that the call is connecting
|
||||||
// ensureCallWindow();
|
// ensureCallWindow();
|
||||||
// d->callWindow.data()->setStatus(CallWindow::StatusConnecting);
|
// d->callWindow.data()->setStatus(CallWindow::StatusConnecting);
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
|
|
@ -133,7 +133,7 @@ ApplicationWindow {
|
||||||
db.transaction(
|
db.transaction(
|
||||||
function(tx) {
|
function(tx) {
|
||||||
// Create the database if it doesn't already exist
|
// 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)');
|
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');
|
var rs = tx.executeSql('SELECT * FROM History');
|
||||||
|
|
|
||||||
|
|
@ -80,7 +80,7 @@ Item {
|
||||||
id: activitiesLayout
|
id: activitiesLayout
|
||||||
height: activitiesView.height
|
height: activitiesView.height
|
||||||
spacing: 0
|
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
|
property bool loadCompleted: root.loadCompleted && width == activitiesView.width * (activitiesLayout.children.length - 1) && activitiesLayout.children.length == activityRepeater.count + 1
|
||||||
onLoadCompletedChanged: activitiesView.currentIndexChanged();
|
onLoadCompletedChanged: activitiesView.currentIndexChanged();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue