summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_route.eo
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@samsung.com>2019-03-05 17:00:37 -0500
committerCedric BAIL <cedric.bail@free.fr>2019-03-07 14:16:11 -0800
commit6155a3df3c7f8947f825b44fff494ce28367a847 (patch)
treea470fde032290dca0c8e683f2af6b51de442ef5e /src/lib/elementary/elm_route.eo
parentd6f280a42f4ca2b097d08f9701ac385cfc15bde1 (diff)
downloadefl-6155a3df3c7f8947f825b44fff494ce28367a847.tar.gz
elm_route: remove all legacy usage from eo files
this takes the current generated output from eolian for legacy code in efl and adds it to the tree, then removes legacy references from the corresponding eo files. in the case where the entire eo file was for a legacy object, that eo file has been removed from the tree ref T7724 Reviewed-by: Cedric BAIL <cedric.bail@free.fr> Differential Revision: https://phab.enlightenment.org/D8195
Diffstat (limited to 'src/lib/elementary/elm_route.eo')
-rw-r--r--src/lib/elementary/elm_route.eo47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/lib/elementary/elm_route.eo b/src/lib/elementary/elm_route.eo
deleted file mode 100644
index 0df51d4e0f..0000000000
--- a/src/lib/elementary/elm_route.eo
+++ /dev/null
@@ -1,47 +0,0 @@
-class Elm.Route extends Efl.Ui.Widget implements Efl.Ui.Legacy
-{
- [[Elementary route class]]
- legacy_prefix: elm_route;
- eo_prefix: elm_obj_route;
- methods {
- @property emap {
- set {
- [[Set map widget for this route]]
- }
- values {
- emap: void_ptr; [[Elementary map widget]]
- }
- }
- @property longitude_min_max {
- get {
- [[Get the minimum and maximum values along the longitude.
-
- Note: If only one value is needed, the other pointer can be
- passed as null.
- ]]
- }
- values {
- min: double; [[Pointer to store the minimum value.]]
- max: double; [[Pointer to store the maximum value.]]
- }
- }
- @property latitude_min_max {
- get {
- [[Get the minimum and maximum values along the latitude.
-
- Note: If only one value is needed, the other pointer can be
- passed as null.
- ]]
- }
- values {
- min: double; [[Pointer to store the minimum value.]]
- max: double; [[Pointer to store the maximum value.]]
- }
- }
- }
- implements {
- class.constructor;
- Efl.Object.constructor;
- Efl.Ui.Widget.theme_apply;
- }
-}