diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-10-31 16:36:32 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-11-01 11:22:33 +0900 |
commit | 9cec14918c089d94a742cb067872181dd452b7ef (patch) | |
tree | 59fd6ae40189a1c9e500d795ae09bc88076b3096 /src/lib/elementary/els_tooltip.c | |
parent | b8ca1272aee00314ca2cfb10214f36590084f6f0 (diff) |
evas: Move evas_canvas.eo to legacy-only
This isn't meant to be installed. The canvas API in EO is based around
the interfaces Efl.Canvas and the widget Efl.Ui.Win. Anything else is
not EO (eg: ecore_evas, evas, ...)
Note: evas_canvas3d is the last remaining thing that is installed along
EO files, but those are all beta APIs.
Diffstat (limited to '')
-rw-r--r-- | src/lib/elementary/els_tooltip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/elementary/els_tooltip.c b/src/lib/elementary/els_tooltip.c index 84fe835afa..4eaea65cf7 100644 --- a/src/lib/elementary/els_tooltip.c +++ b/src/lib/elementary/els_tooltip.c | |||
@@ -544,14 +544,14 @@ _elm_tooltip_reconfigure(Elm_Tooltip *tt) | |||
544 | &basex, &basey, &cw, &ch); | 544 | &basex, &basey, &cw, &ch); |
545 | elm_win_screen_position_get(elm_widget_top_get(tt->owner), | 545 | elm_win_screen_position_get(elm_widget_top_get(tt->owner), |
546 | &cx, &cy); | 546 | &cx, &cy); |
547 | evas_canvas_pointer_canvas_xy_get(tt->evas, &px, &py); | 547 | evas_pointer_canvas_xy_get(tt->evas, &px, &py); |
548 | cx -= basex; | 548 | cx -= basex; |
549 | cy -= basey; | 549 | cy -= basey; |
550 | } | 550 | } |
551 | else | 551 | else |
552 | { | 552 | { |
553 | evas_output_size_get(tt->evas, &cw, &ch); | 553 | evas_output_size_get(tt->evas, &cw, &ch); |
554 | evas_canvas_pointer_canvas_xy_get(tt->evas, &px, &py); | 554 | evas_pointer_canvas_xy_get(tt->evas, &px, &py); |
555 | } | 555 | } |
556 | TTDBG("SCREEN: cw=%d,ch=%d\n", cw, ch); | 556 | TTDBG("SCREEN: cw=%d,ch=%d\n", cw, ch); |
557 | 557 | ||