チェンジセット 1184
- コミット日時:
- 2008/08/29 16:46:06 (3 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
as3/snapfit/trunk/src/snapfit/events/FAbstractFixAdapter.as
r1183 r1184 24 24 { 25 25 import flash.events.IEventDispatcher; 26 use namespace ns_fadapter; 26 27 27 28 /** … … 94 95 for each( var handlerName:String in handlerNames ) 95 96 { 96 if ( target[handlerName] is Function )97 try 97 98 { 98 this[handlerName] = target[handlerName]; 99 if ( target[handlerName] is Function ) 100 this[handlerName] = target[handlerName]; 101 } 102 catch ( e:Error ) 103 { 104 try 105 { 106 if ( target.ns_fadapter::[handlerName] is Function ) 107 this[handlerName] = target.ns_fadapter::[handlerName]; 108 } 109 catch ( e:Error ) 110 { 111 ; 112 } 99 113 } 100 114 } as3/snapfit/trunk/src/snapfit/events/FAdapter.as
r1183 r1184 45 45 { 46 46 _dispatcher = (dispatcher_) ? dispatcher_ : new EventDispatcher(); 47 _listeners = { };47 _listeners = { }; 48 48 } 49 49 … … 194 194 } 195 195 } 196 197 public static const DISPATH_FILTER:int = 0; 198 public static const REMOVE_FILTER:int = -1; 199 196 200 197 /** 201 198 * filterfunc が true を返すときに、イベントが送出されます.

