From commits-return-2861-archive-asf-public=cust-asf.ponee.io@royale.apache.org Wed Mar 14 17:32:52 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 24115180718 for ; Wed, 14 Mar 2018 17:32:51 +0100 (CET) Received: (qmail 71768 invoked by uid 500); 14 Mar 2018 16:32:51 -0000 Mailing-List: contact commits-help@royale.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@royale.apache.org Delivered-To: mailing list commits@royale.apache.org Received: (qmail 71752 invoked by uid 99); 14 Mar 2018 16:32:51 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Mar 2018 16:32:51 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 8DFE980990; Wed, 14 Mar 2018 16:32:50 +0000 (UTC) Date: Wed, 14 Mar 2018 16:32:51 +0000 To: "commits@royale.apache.org" Subject: [royale-compiler] 01/02: need to use uint for rgba MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: aharui@apache.org In-Reply-To: <152104517050.28336.8394028220889220842@gitbox.apache.org> References: <152104517050.28336.8394028220889220842@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: royale-compiler X-Git-Refname: refs/heads/develop X-Git-Reftype: branch X-Git-Rev: 5a1a2b9aaaed6d2c5b6dacd0ee8e588aea9e68d7 X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20180314163250.8DFE980990@gitbox.apache.org> This is an automated email from the ASF dual-hosted git repository. aharui pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/royale-compiler.git commit 5a1a2b9aaaed6d2c5b6dacd0ee8e588aea9e68d7 Author: Alex Harui AuthorDate: Tue Mar 13 23:49:36 2018 -0700 need to use uint for rgba --- .../org/apache/royale/compiler/internal/css/codegen/CSSReducer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/src/main/java/org/apache/royale/compiler/internal/css/codegen/CSSReducer.java b/compiler/src/main/java/org/apache/royale/compiler/internal/css/codegen/CSSReducer.java index 171f1c9..4f26684 100644 --- a/compiler/src/main/java/org/apache/royale/compiler/internal/css/codegen/CSSReducer.java +++ b/compiler/src/main/java/org/apache/royale/compiler/internal/css/codegen/CSSReducer.java @@ -462,7 +462,7 @@ public class CSSReducer implements ICSSCodeGenResult } else if (value instanceof CSSRgbaColorPropertyValue) { - valueInstructions.addInstruction(ABCConstants.OP_pushint, new Long(((CSSRgbaColorPropertyValue)value).getColorAsLong())); + valueInstructions.addInstruction(ABCConstants.OP_pushuint, new Long(((CSSRgbaColorPropertyValue)value).getColorAsLong())); } else if (value instanceof CSSKeywordPropertyValue) { -- To stop receiving notification emails like this one, please contact aharui@apache.org.