From 07d8dd7a223fee2b8ef889dc062183279a49bc4e Mon Sep 17 00:00:00 2001 From: "buster%netscape.com" Date: Thu, 15 Apr 1999 06:09:06 +0000 Subject: [PATCH] synched with text property API changes in nsITextEditor git-svn-id: svn://10.0.0.236/trunk@27557 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpfe/AppCores/idl/EditorAppCore.idl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mozilla/xpfe/AppCores/idl/EditorAppCore.idl b/mozilla/xpfe/AppCores/idl/EditorAppCore.idl index 3241cd1e98b..f44a00209fa 100755 --- a/mozilla/xpfe/AppCores/idl/EditorAppCore.idl +++ b/mozilla/xpfe/AppCores/idl/EditorAppCore.idl @@ -12,10 +12,10 @@ interface EditorAppCore : BaseAppCore void EditorAppCore(); void setEditorType(in wstring editorType); - void setTextProperty(in wstring attr); - void removeTextProperty(in wstring attr); + void setTextProperty(in wstring prop, in DOMString attr, in DOMString value); + void removeTextProperty(in wstring prop, in DOMString attr); - void getTextProperty(in wstring attr, out boolean firstHas, out boolean anyHas, out boolean allHas); + void getTextProperty(in wstring prop, in DOMString attr, in DOMString value, out boolean firstHas, out boolean anyHas, out boolean allHas); void undo(); void redo();