summaryrefslogtreecommitdiff
path: root/src/mapBubble.js
diff options
context:
space:
mode:
authorJames Westman <james@flyingpimonster.net>2020-12-28 16:01:49 -0600
committerMarcus Lundblad <ml@update.uu.se>2021-02-09 20:48:40 +0000
commit39cf3f63dd9a84e80a2be3867dd4aab8232151ef (patch)
treeff2ebdc9077e51c6e834bca5a686a5aa2c5a4560 /src/mapBubble.js
parente3368acc19676628454ef87cb0a60954e13b18ad (diff)
downloadgnome-maps-39cf3f63dd9a84e80a2be3867dd4aab8232151ef.tar.gz
Rename placeBubble -> placeView
It's no longer a subclass of MapBubble, so PlaceView is a more fitting name. Also rename PlaceBubbleImage -> PlaceViewImage.
Diffstat (limited to 'src/mapBubble.js')
-rw-r--r--src/mapBubble.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mapBubble.js b/src/mapBubble.js
index 3663539d..b7217fad 100644
--- a/src/mapBubble.js
+++ b/src/mapBubble.js
@@ -29,7 +29,7 @@ const Application = imports.application;
const ContactPlace = imports.contactPlace;
const GeocodeFactory = imports.geocode;
const Place = imports.place;
-const PlaceBubble = imports.placeBubble;
+const PlaceView = imports.placeView;
const PlaceButtons = imports.placeButtons;
const PlaceFormatter = imports.placeFormatter;
const PlaceStore = imports.placeStore;
@@ -57,7 +57,7 @@ class MapBubble extends Gtk.Popover {
super._init(params);
- let content = new PlaceBubble.PlaceBubble({ place, mapView, visible: true });
+ let content = new PlaceView.PlaceView({ place, mapView, visible: true });
let scrolledWindow = new MapBubbleScrolledWindow({ visible: true,
propagateNaturalWidth: true,