Module: nagvis Branch: master Commit: 9905cb9ce4769e40696f2bd839caed051cfde302 URL: http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis/commit/?id=9905cb9ce4769e40696f2bd839caed051cfde302
Author: Roman Kyrylych <[email protected]> Date: Thu Aug 20 17:31:52 2009 +0300 gmap: redispatchMarkerEvent should be redispatchLineEvent for links Signed-off-by: Roman Kyrylych <[email protected]> --- .../modules/gmap/view/controls/GMapLinksControl.as | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/uifx/src/modules/gmap/view/controls/GMapLinksControl.as b/uifx/src/modules/gmap/view/controls/GMapLinksControl.as index 96ced53..e8ca7c2 100644 --- a/uifx/src/modules/gmap/view/controls/GMapLinksControl.as +++ b/uifx/src/modules/gmap/view/controls/GMapLinksControl.as @@ -160,8 +160,8 @@ package modules.gmap.view.controls if (_map) { var l : LinkLine = new LinkLine(link); - l.addEventListener(LinkEvent.SELECTED, redispatchMarkerEvent); - l.addEventListener(LinkEvent.ACTIVATE, redispatchMarkerEvent); + l.addEventListener(LinkEvent.SELECTED, redispatchLineEvent); + l.addEventListener(LinkEvent.ACTIVATE, redispatchLineEvent); l.addEventListener(LinkEvent.CHANGE, onLinkChange); _lines.push(l); @@ -172,7 +172,7 @@ package modules.gmap.view.controls // Marker is not an UI component, so // we need to redispatch his events to get them into Mate. - protected function redispatchMarkerEvent(event : Event) : void + protected function redispatchLineEvent(event : Event) : void { dispatchEvent(event); } ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ Nagvis-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nagvis-checkins
