small interface change to InsertBreak

This commit is contained in:
buster%netscape.com 1999-03-10 19:49:18 +00:00
Родитель fd1334e42c
Коммит 709ac5c2c8
4 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -121,9 +121,9 @@ NS_IMETHODIMP nsHTMLEditor::InsertText(const nsString& aStringToInsert)
return Inherited::InsertText(aStringToInsert);
}
NS_IMETHODIMP nsHTMLEditor::InsertBreak(PRBool aCtrlKey)
NS_IMETHODIMP nsHTMLEditor::InsertBreak()
{
return Inherited::InsertBreak(aCtrlKey);
return Inherited::InsertBreak();
}
// Methods shared with the base editor.

Просмотреть файл

@ -59,7 +59,7 @@ public:
NS_IMETHOD RemoveTextProperty(nsIAtom *aProperty);
NS_IMETHOD DeleteSelection(nsIEditor::Direction aDir);
NS_IMETHOD InsertText(const nsString& aStringToInsert);
NS_IMETHOD InsertBreak(PRBool aCtrlKey);
NS_IMETHOD InsertBreak();
// Transaction control
NS_IMETHOD EnableUndo(PRBool aEnable);

Просмотреть файл

@ -121,9 +121,9 @@ NS_IMETHODIMP nsHTMLEditor::InsertText(const nsString& aStringToInsert)
return Inherited::InsertText(aStringToInsert);
}
NS_IMETHODIMP nsHTMLEditor::InsertBreak(PRBool aCtrlKey)
NS_IMETHODIMP nsHTMLEditor::InsertBreak()
{
return Inherited::InsertBreak(aCtrlKey);
return Inherited::InsertBreak();
}
// Methods shared with the base editor.

Просмотреть файл

@ -59,7 +59,7 @@ public:
NS_IMETHOD RemoveTextProperty(nsIAtom *aProperty);
NS_IMETHOD DeleteSelection(nsIEditor::Direction aDir);
NS_IMETHOD InsertText(const nsString& aStringToInsert);
NS_IMETHOD InsertBreak(PRBool aCtrlKey);
NS_IMETHOD InsertBreak();
// Transaction control
NS_IMETHOD EnableUndo(PRBool aEnable);