Fix all of the warnings about member initializer ordering in constructors (bug 156135). r=timeless, sr=jag.

This commit is contained in:
bryner%netscape.com 2005-11-02 07:37:54 +00:00
Родитель 7caf9f9083
Коммит 7865e3f6a2
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -52,7 +52,7 @@
* Expr and is used for namespaceID resolution
**/
ElementAvailableFunctionCall::ElementAvailableFunctionCall(Element* aNode) :
mStylesheetNode(aNode), FunctionCall(ELEMENT_AVAILABLE_FN)
FunctionCall(ELEMENT_AVAILABLE_FN), mStylesheetNode(aNode)
{
}

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

@ -17,7 +17,7 @@ const String XSL_VENDOR_URL_PROPERTY("vendor-url");
* Expr and is used for namespaceID resolution
**/
SystemPropertyFunctionCall::SystemPropertyFunctionCall(Element* aNode) :
mStylesheetNode(aNode), FunctionCall(SYSTEM_PROPERTY_FN)
FunctionCall(SYSTEM_PROPERTY_FN), mStylesheetNode(aNode)
{
}