Explicitly call base class ctor in wxRichTextFieldType copy ctor.
Failure to do this provokes g++ warnings with -Wextra and is, generally speaking, wrong, even if it probably doesn't matter in this particular case. See #14459. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71972 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
57bf8a6f1e
commit
2643e2e496
@ -3613,7 +3613,9 @@ public:
|
||||
/**
|
||||
Copy constructor.
|
||||
*/
|
||||
wxRichTextFieldType(const wxRichTextFieldType& fieldType) { Copy(fieldType); }
|
||||
wxRichTextFieldType(const wxRichTextFieldType& fieldType)
|
||||
: wxObject(fieldType)
|
||||
{ Copy(fieldType); }
|
||||
|
||||
void Copy(const wxRichTextFieldType& fieldType) { m_name = fieldType.m_name; }
|
||||
|
||||
@ -3766,7 +3768,9 @@ public:
|
||||
The copy constructor.
|
||||
|
||||
*/
|
||||
wxRichTextFieldTypeStandard(const wxRichTextFieldTypeStandard& field) { Copy(field); }
|
||||
wxRichTextFieldTypeStandard(const wxRichTextFieldTypeStandard& field)
|
||||
: wxRichTextFieldType(field)
|
||||
{ Copy(field); }
|
||||
|
||||
/**
|
||||
Initialises the object.
|
||||
|
Loading…
Reference in New Issue
Block a user