This is an automated email from the ASF dual-hosted git repository.
carlosrovira pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
The following commit(s) were added to refs/heads/develop by this push:
new 312b98c TLF: added missing "public" in class constructors
312b98c is described below
commit 312b98cfb3ec196bf05ec48df666a61cec7ccf9c
Author: Carlos Rovira <[email protected]>
AuthorDate: Thu May 30 20:30:13 2019 +0200
TLF: added missing "public" in class constructors
---
.../org/apache/royale/textLayout/operations/ApplyLinkOperation.as | 2 +-
.../main/royale/org/apache/royale/textLayout/operations/CutOperation.as | 2 +-
.../apache/royale/textLayout/operations/ModifyInlineGraphicOperation.as | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git
a/frameworks/projects/TLF/src/main/royale/org/apache/royale/textLayout/operations/ApplyLinkOperation.as
b/frameworks/projects/TLF/src/main/royale/org/apache/royale/textLayout/operations/ApplyLinkOperation.as
index 5ff2380..51c47aa 100644
---
a/frameworks/projects/TLF/src/main/royale/org/apache/royale/textLayout/operations/ApplyLinkOperation.as
+++
b/frameworks/projects/TLF/src/main/royale/org/apache/royale/textLayout/operations/ApplyLinkOperation.as
@@ -58,7 +58,7 @@ package org.apache.royale.textLayout.operations
* @playerversion AIR 1.5
* @langversion 3.0
*/
- function ApplyLinkOperation(operationState:SelectionState,
href:String, target:String, extendToLinkBoundary:Boolean)
+ public function
ApplyLinkOperation(operationState:SelectionState, href:String, target:String,
extendToLinkBoundary:Boolean)
{
super(operationState);
diff --git
a/frameworks/projects/TLF/src/main/royale/org/apache/royale/textLayout/operations/CutOperation.as
b/frameworks/projects/TLF/src/main/royale/org/apache/royale/textLayout/operations/CutOperation.as
index aa3c89a..a2746b5 100644
---
a/frameworks/projects/TLF/src/main/royale/org/apache/royale/textLayout/operations/CutOperation.as
+++
b/frameworks/projects/TLF/src/main/royale/org/apache/royale/textLayout/operations/CutOperation.as
@@ -55,7 +55,7 @@ package org.apache.royale.textLayout.operations {
* @playerversion AIR 1.5
* @langversion 3.0
*/
- function CutOperation(operationState:SelectionState,
scrapToCut:TextScrap)
+ public function CutOperation(operationState:SelectionState,
scrapToCut:TextScrap)
{
super(operationState);
if (absoluteStart < absoluteEnd)
diff --git
a/frameworks/projects/TLF/src/main/royale/org/apache/royale/textLayout/operations/ModifyInlineGraphicOperation.as
b/frameworks/projects/TLF/src/main/royale/org/apache/royale/textLayout/operations/ModifyInlineGraphicOperation.as
index 9b31316..f373800 100644
---
a/frameworks/projects/TLF/src/main/royale/org/apache/royale/textLayout/operations/ModifyInlineGraphicOperation.as
+++
b/frameworks/projects/TLF/src/main/royale/org/apache/royale/textLayout/operations/ModifyInlineGraphicOperation.as
@@ -56,7 +56,7 @@ package org.apache.royale.textLayout.operations {
* @playerversion AIR 1.5
* @langversion 3.0
*/
- function
ModifyInlineGraphicOperation(operationState:SelectionState, source:Object,
width:Object, height:Object, options:Object = null)
+ public function
ModifyInlineGraphicOperation(operationState:SelectionState, source:Object,
width:Object, height:Object, options:Object = null)
{
super(operationState);