show which shell is loaded in debug output

This commit is contained in:
Sebastian Kügler 2013-10-28 04:23:55 +01:00
parent ee1ac62eb6
commit 079863cb5c
2 changed files with 5 additions and 5 deletions

View File

@ -38,6 +38,6 @@ Rectangle {
}
Component.onCompleted: {
print("View QML loaded")
print("View org.kde.blank QML loaded")
}
}

View File

@ -75,7 +75,7 @@ Rectangle {
initialPage: Item {
id: blankPage
}
states: [
State {
name: "closed"
@ -109,7 +109,7 @@ Rectangle {
print("Old Containment: " + internal.oldContainment);
//containment.parent = root;
containment.visible = true;
internal.newContainment = containment;
if (internal.oldContainment && internal.oldContainment != containment) {
switchAnim.running = true;
@ -175,12 +175,12 @@ Rectangle {
}
}
Component.onCompleted: {
//configure the view behavior
desktop.stayBehind = true;
desktop.fillScreen = true;
print("View QML loaded")
print("View org.kde.desktop QML loaded")
}
}