call base class ctor in copy ctors explicitly (fixes gcc warnings with -Wextra)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43020 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -414,7 +414,8 @@ wxTarEntry::~wxTarEntry()
|
||||
}
|
||||
|
||||
wxTarEntry::wxTarEntry(const wxTarEntry& e)
|
||||
: m_Name(e.m_Name),
|
||||
: wxArchiveEntry(),
|
||||
m_Name(e.m_Name),
|
||||
m_Mode(e.m_Mode),
|
||||
m_IsModeSet(e.m_IsModeSet),
|
||||
m_UserId(e.m_UserId),
|
||||
|
Reference in New Issue
Block a user