Module: nagvis Branch: master Commit: f9625016ffbba8854294efe9e2711ef202aadac2 URL: http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis/commit/?id=f9625016ffbba8854294efe9e2711ef202aadac2
Author: Roman Kyrylych <[email protected]> Date: Thu Aug 20 13:49:25 2009 +0300 gmap: Fixed changing of locations in existing link Signed-off-by: Roman Kyrylych <[email protected]> --- uifx/src/modules/gmap/view/DialogLink.mxml | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/uifx/src/modules/gmap/view/DialogLink.mxml b/uifx/src/modules/gmap/view/DialogLink.mxml index 959d464..4a2e596 100644 --- a/uifx/src/modules/gmap/view/DialogLink.mxml +++ b/uifx/src/modules/gmap/view/DialogLink.mxml @@ -169,10 +169,10 @@ var ul : Link = new Link(); ul.id = (_link)? _link.id : ''; - ul.id1 = (_link)? _link.id1 : lnkLocation1.selectedItem.id; - ul.id2 = (_link)? _link.id2 : lnkLocation2.selectedItem.id; - ul.location1 = (_link)? _link.location1 : lnkLocation1.selectedItem as Location; - ul.location2 = (_link)? _link.location2 : lnkLocation2.selectedItem as Location; + ul.id1 = lnkLocation1.selectedItem.id; + ul.id2 = lnkLocation2.selectedItem.id; + ul.location1 = lnkLocation1.selectedItem as Location; + ul.location2 = lnkLocation2.selectedItem as Location; ul.description = lnkDescription.text; ul.object = lnkNObject.selectedItem; ------------------------------------------------------------------------------ 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
