Advertisement
Guest User

Untitled

a guest
Jul 12th, 2014
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. 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
  2. unity::action::ActionManager::ActionManager(QObject*):
  3. Could not determine application identifier. HUD will not work properly.
  4. Provide your application identifier in $APP_ID environment variable.
  5. file:///usr/lib/i386-linux-gnu/qt5/qml/Ubuntu/Components/MainView.qml:257: TypeError: Cannot call method 'hasOwnProperty' of null
  6.  
  7. import QtQuick 2.0
  8. import Ubuntu.Components 0.1
  9. import QtWebKit 3.0
  10.  
  11. /*!
  12. brief MainView with a Flickable WebView.
  13. */
  14.  
  15. MainView {
  16. // objectName for functional testing purposes (autopilot-qt5)
  17. objectName: "mainView"
  18.  
  19. // Note! applicationName needs to match the "name" field of the click manifest
  20. applicationName: "com.ubuntu.developer.tomoqv.SL-planner"
  21.  
  22. /*
  23. This property enables the application to change orientation
  24. when the device is rotated. The default is false.
  25. */
  26. automaticOrientation: true
  27.  
  28. width: units.gu(100)
  29. height: units.gu(75)
  30.  
  31. Flickable {
  32. id: webViewFlickable
  33. anchors.fill: parent
  34.  
  35. WebView {
  36. id: webView
  37. anchors.fill: parent
  38. url: "http://mobil.sl.se"
  39. }
  40. }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement