TypeError: Não é possível chamar o método 'hasOwnProperty' de nulo, enquanto cria uma janela QMLscene

3

Estou tentando fazer um aplicativo da web simples do Ubuntu Touch com o Qt Creator. Eu configurei um novo projeto de acordo com o tutorial e enviei os arquivos para o Bazaar. Eu configurei uma url em vez do padrão index.htm no arquivo qml do projeto. O uso de build- & gt; run carrega uma janela QML Scene com a página da Web desejada, mas o Qt Creator produz a seguinte saída:

Starting /usr/lib/i386-linux-gnu/qt5/bin/qmlscene -I /home/tomas/ubuntu-sdk/SL-planner -I /usr/bin -I /usr/lib/i386-linux-gnu/qt5/qml /home/tomas/ubuntu-sdk/SL-planner/SL-planner.qml
unity::action::ActionManager::ActionManager(QObject*):
Could not determine application identifier. HUD will not work properly.
Provide your application identifier in $APP_ID environment variable.
file:///usr/lib/i386-linux-gnu/qt5/qml/Ubuntu/Components/MainView.qml:257: TypeError: Cannot call method 'hasOwnProperty' of null

Meu SL-planner.qml tem esta aparência:

import QtQuick 2.0
import Ubuntu.Components 0.1
import QtWebKit 3.0

/*!
    \brief MainView with a Flickable WebView.
*/

MainView {
    // objectName for functional testing purposes (autopilot-qt5)
    objectName: "mainView"

    // Note! applicationName needs to match the "name" field of the click manifest
    applicationName: "com.ubuntu.developer.tomoqv.SL-planner"

    /* 
     This property enables the application to change orientation 
     when the device is rotated. The default is false.
    */
    automaticOrientation: true

    width: units.gu(100)
    height: units.gu(75)

    Flickable {
        id: webViewFlickable
        anchors.fill: parent

        WebView {
            id: webView
            anchors.fill: parent
            url: "http://mobil.sl.se"
        }
    }
}

O que estou perdendo?

    
por tomoqv 03.11.2013 / 21:22

0 respostas