mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-21 23:48:22 +08:00
Fix initialization issue spotted by PVS-Studio and Coverity
This commit is contained in:
parent
1d560bd0be
commit
5f134f783a
@ -22,11 +22,13 @@
|
||||
HexLineEdit::HexLineEdit(QWidget * parent)
|
||||
:QLineEdit(parent)
|
||||
{
|
||||
m_editAsGuid = false;
|
||||
}
|
||||
|
||||
HexLineEdit::HexLineEdit(const QString & contents, QWidget * parent)
|
||||
:QLineEdit(contents, parent)
|
||||
{
|
||||
m_editAsGuid = false;
|
||||
}
|
||||
|
||||
HexLineEdit::~HexLineEdit()
|
||||
|
Loading…
Reference in New Issue
Block a user