From 06d9b436eeda2cc4666664b7be61481abfef60a5 Mon Sep 17 00:00:00 2001 From: Mounir Lamouri Date: Mon, 8 Jul 2013 09:11:43 -0400 Subject: [PATCH] Bug 890738 - Use AString instead of ACString in nsIColorPicker. sr=roc --- widget/nsIColorPicker.idl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/widget/nsIColorPicker.idl b/widget/nsIColorPicker.idl index 7297d802f06c..5fa1236021d2 100644 --- a/widget/nsIColorPicker.idl +++ b/widget/nsIColorPicker.idl @@ -28,7 +28,7 @@ interface nsIColorPickerShownCallback : nsISupports * @param color The new selected color value following the format specifed on * top of this file. */ - void update(in ACString color); + void update(in AString color); /** * Callback called when the color picker is dismissed. @@ -39,7 +39,7 @@ interface nsIColorPickerShownCallback : nsISupports * @param color The new selected color value following the format specifed on * top of this file or the empty string. */ - void done(in ACString color); + void done(in AString color); }; [scriptable, uuid(3c3bdcce-54b1-4ae2-8647-1a8d4712ef2e)] @@ -62,7 +62,7 @@ interface nsIColorPicker : nsISupports * parameter has to follow the format specified on top * of this file. */ - void init(in nsIDOMWindow parent, in AString title, in ACString initialColor); + void init(in nsIDOMWindow parent, in AString title, in AString initialColor); /** * Opens the color dialog asynchrounously.