~ubuntu-branches/ubuntu/precise/navit/precise

« back to all changes in this revision

Viewing changes to navit/gui/qml/skins/navit/PageBookmarksAdd.qml

  • Committer: Bazaar Package Importer
  • Author(s): Gilles Filippini
  • Date: 2010-07-27 22:36:40 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20100727223640-jlgmnnwtx2siv1pr
Tags: 0.2.0~svn3501+dfsg.1-1
* New upstream snapshot:
  + Support for autoloaded plugins
  + Many memory leaks fixed
* Refresh patches

* New patch path_max to try fixing the FTBFS on hurd-i386. 

* debian/control: bumped Standards-Version to 3.9.1 (no change needed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
import Qt 4.6
 
1
import Qt 4.7
 
2
import "pagenavigation.js" as Navit
3
3
 
4
4
Rectangle {
5
5
    id: page
11
11
    Timer {
12
12
        id: backTimer
13
13
        interval: 2000;
14
 
        onTriggered: gui.backToPrevPage();
 
14
        onTriggered: Navit.back();
15
15
    }
16
16
 
17
17
    function add(description) {
28
28
    
29
29
    Component.onCompleted: pageOpen();    
30
30
    
31
 
    opacity: Behavior {
 
31
    Behavior on opacity {
32
32
        NumberAnimation { id: opacityAnimation; duration: 300; alwaysRunToEnd: true }
33
33
    }
34
34