[gnome-maps/wip/mlundblad/transit-routing: 13/31] application: Add initialization of the OpenTripPlanner instance



commit 52763583f8e69712574947c800d3ca3adab16d83
Author: Marcus Lundblad <ml update uu se>
Date:   Thu Mar 17 21:32:56 2016 +0100

    application: Add initialization of the OpenTripPlanner instance

 src/application.js |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/src/application.js b/src/application.js
index 46c5f87..e23ac9a 100644
--- a/src/application.js
+++ b/src/application.js
@@ -36,6 +36,7 @@ const GeocodeService = imports.geocodeService;
 const MainWindow = imports.mainWindow;
 const Maps = imports.gi.GnomeMaps;
 const NotificationManager = imports.notificationManager;
+const OpenTripPlanner = imports.openTripPlanner;
 const OSMEdit = imports.osmEdit;
 const OSMTypeSearchEntry = imports.osmTypeSearchEntry;
 const PlaceStore = imports.placeStore;
@@ -55,6 +56,7 @@ let geocodeService = null;
 let networkMonitor = null;
 let checkInManager = null;
 let contactStore = null;
+let openTripPlanner = null;
 let osmEdit = null;
 let normalStartup = true;
 let routeQuery = null;
@@ -257,6 +259,7 @@ const Application = new Lang.Class({
         contactStore = new Maps.ContactStore();
         contactStore.load();
         osmEdit = new OSMEdit.OSMEdit();
+        openTripPlanner = new OpenTripPlanner.OpenTripPlanner();
     },
 
     _createWindow: function() {


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]