Repository: flex-asjs Updated Branches: refs/heads/tlf 244cd2f8e -> 56a507d5e
initial dummy ContextMenu Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/81eceb27 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/81eceb27 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/81eceb27 Branch: refs/heads/tlf Commit: 81eceb272bc6287756974542e1cc11474f26d503 Parents: 48710ae Author: Alex Harui <[email protected]> Authored: Fri May 5 09:41:09 2017 -0700 Committer: Alex Harui <[email protected]> Committed: Mon May 8 11:59:00 2017 -0700 ---------------------------------------------------------------------- .../main/flex/org/apache/flex/textLayout/dummy/ContextMenu.as | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/81eceb27/frameworks/projects/TLF/src/main/flex/org/apache/flex/textLayout/dummy/ContextMenu.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/TLF/src/main/flex/org/apache/flex/textLayout/dummy/ContextMenu.as b/frameworks/projects/TLF/src/main/flex/org/apache/flex/textLayout/dummy/ContextMenu.as index f79776c..2c8108f 100644 --- a/frameworks/projects/TLF/src/main/flex/org/apache/flex/textLayout/dummy/ContextMenu.as +++ b/frameworks/projects/TLF/src/main/flex/org/apache/flex/textLayout/dummy/ContextMenu.as @@ -18,10 +18,10 @@ //////////////////////////////////////////////////////////////////////////////// package org.apache.flex.textLayout.dummy { public class ContextMenu { - public var builtInItems:ContextMenuBuiltInItems; - public var clipboardItems:ContextMenuClipboardItems; + public var builtInItems:ContextMenuBuiltInItems = new ContextMenuBuiltInItems(); + public var clipboardItems:ContextMenuClipboardItems = new ContextMenuClipboardItems(); public var clipboardMenu:Boolean; - public var customItems:Array; + public var customItems:Array = []; public var isSupported:Boolean; public var items:Array; }
