Module: nagvis Branch: master Commit: e97059bb5cef05e5ab521233ec5edbd5e74c87f1 URL: http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis/commit/?id=e97059bb5cef05e5ab521233ec5edbd5e74c87f1
Author: Roman Kyrylych <[email protected]> Date: Thu Aug 13 15:08:23 2009 +0300 gmap: Added the forgotten file from previous commit Signed-off-by: Roman Kyrylych <[email protected]> --- uifx/src/modules/gmap/events/GoogleMapsKeyEvent.as | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/uifx/src/modules/gmap/events/GoogleMapsKeyEvent.as b/uifx/src/modules/gmap/events/GoogleMapsKeyEvent.as new file mode 100644 index 0000000..97358c6 --- /dev/null +++ b/uifx/src/modules/gmap/events/GoogleMapsKeyEvent.as @@ -0,0 +1,18 @@ +package modules.gmap.events +{ + import flash.events.Event; + + public class GoogleMapsKeyEvent extends Event + { + public static const SAVE : String = "GoogleMapKeySave"; + + public var key : String; + + public function GoogleMapsKeyEvent(type : String, key : String = "", + bubbles : Boolean = true, cancelable : Boolean = false) + { + super(type, bubbles, cancelable); + this.key = key; + } + } +} \ No newline at end of file ------------------------------------------------------------------------------ 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
