Module: nagvis Branch: master Commit: 2d05095b3cfb55c9a42abb3eff4727c64ba3bdf3 URL: http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis;a=commit;h=2d05095b3cfb55c9a42abb3eff4727c64ba3bdf3
Author: Andriy Skuratov <[email protected]> Date: Tue Mar 16 16:32:44 2010 +0200 Fixed source file encoding. --- uifx/src/modules/gmap/events/LocationEvent.as | 1 + uifx/src/modules/gmap/events/SetupEvent.as | 77 ++++++++++++------------- 2 files changed, 39 insertions(+), 39 deletions(-) diff --git a/uifx/src/modules/gmap/events/LocationEvent.as b/uifx/src/modules/gmap/events/LocationEvent.as index 114104f..fb3991c 100644 --- a/uifx/src/modules/gmap/events/LocationEvent.as +++ b/uifx/src/modules/gmap/events/LocationEvent.as @@ -48,3 +48,4 @@ package modules.gmap.events } } } + diff --git a/uifx/src/modules/gmap/events/SetupEvent.as b/uifx/src/modules/gmap/events/SetupEvent.as index 6081b12..0423963 100644 --- a/uifx/src/modules/gmap/events/SetupEvent.as +++ b/uifx/src/modules/gmap/events/SetupEvent.as @@ -1,39 +1,38 @@ -/***************************************************************************** - * - * Copyright (C) 2009 NagVis Project - * - * License: - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as - * published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - * - *****************************************************************************/ - -package modules.gmap.events -{ - import flash.events.Event; - - public class SetupEvent extends Event - { - public static const MARK_HOST : String = "MarkHost"; - - public var value : String; - - public function SetupEvent(type:String, value:String, bubbles:Boolean=true, cancelable:Boolean=false) - { - super(type, bubbles, cancelable); - this.value = value; - } - - } -} \ No newline at end of file +/***************************************************************************** + * + * Copyright (C) 2009 NagVis Project + * + * License: + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + *****************************************************************************/ + +package modules.gmap.events +{ + import flash.events.Event; + + public class SetupEvent extends Event + { + public static const MARK_HOST : String = "MarkHost"; + + public var value : String; + + public function SetupEvent(type:String, value:String, bubbles:Boolean=true, cancelable:Boolean=false) + { + super(type, bubbles, cancelable); + this.value = value; + } + } +} ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Nagvis-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nagvis-checkins
