Further changes to address bar

This commit is contained in:
Niraj Venkat 2015-06-18 15:09:13 -07:00
parent 1be303e3ed
commit 5645491170
2 changed files with 3 additions and 3 deletions

View file

@ -75,7 +75,7 @@ DialogContainer {
Connections {
target: addressBarDialog
onGoBackPossible: {
console.log("ayy lmao BACK")
console.log("BACK")
}
}
}
@ -104,7 +104,7 @@ DialogContainer {
Connections {
target: addressBarDialog
onGoForwardPossible: {
console.log("ayy lmao FORWARD")
console.log("FORWARD")
}
}
}

View file

@ -42,7 +42,7 @@ void AddressBarDialog::changeForwardAlpha(bool isPossible) {
QQmlEngine engine;
QQmlComponent component(&engine, "AddressBarDialog.qml");
QObject *object = component.create();
qDebug() << "AAAAAAAAAAAAAA : " << ((QQuickItem*)parent())->children()[0]->objectName();
qDebug() << "Current parent's child : " << ((QQuickItem*)parent())->children()[0]->objectName();
QVariant returnedValue;
QVariant msg = "Hello from C++";