Ок, читаю файл:
C++ (Qt)
QString MainWindow::WhereYourGodNow()
{
QFile file(filePath);
if (!file.open (QIODevice::ReadOnly))
qDebug()<<"Not open file";
QTextStream stream ( &file );
QString line;
while( !stream.atEnd() ) {
line = stream.readLine();
line = stream.readAll();
}
file.close();
return line;
}
Вызываю в QML ListView так:
C++ (Qt)
...
MouseArea {
anchors.fill: parent
onClicked: {
if (model.hasModelChildren)
listViewTree.model.rootIndex = listViewTree.model.modelIndex(index)
else
{
console.log(filePath);
window.WhereYourGodNow(edit.text)
}
Кидается ошибка C++ Library, что делаю неправильно?