You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ha...@apache.org on 2018/09/12 15:07:22 UTC

[royale-asjs] branch develop updated: Prevent method from being renamed

This is an automated email from the ASF dual-hosted git repository.

harbs 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 1e25e78  Prevent method from being renamed
1e25e78 is described below

commit 1e25e789191a431e52452ded233ce0f7e720d6d2
Author: Harbs <ha...@in-tools.com>
AuthorDate: Wed Sep 12 18:07:14 2018 +0300

    Prevent method from being renamed
---
 .../src/main/royale/org/apache/royale/mdl/ProgressBar.as                | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frameworks/projects/MaterialDesignLite/src/main/royale/org/apache/royale/mdl/ProgressBar.as b/frameworks/projects/MaterialDesignLite/src/main/royale/org/apache/royale/mdl/ProgressBar.as
index 820a9f5..eb6beec 100644
--- a/frameworks/projects/MaterialDesignLite/src/main/royale/org/apache/royale/mdl/ProgressBar.as
+++ b/frameworks/projects/MaterialDesignLite/src/main/royale/org/apache/royale/mdl/ProgressBar.as
@@ -160,7 +160,7 @@ package org.apache.royale.mdl
         {
             if (materialProgress && !_indeterminate)
             {
-                materialProgress.setBuffer(value);
+                materialProgress["setBuffer"](value);
             }
         }