mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-22 15:51:29 -04:00
fixed uninitialized memory read
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5428 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
5b73e36add
commit
a9d19528a0
1 changed files with 3 additions and 3 deletions
|
@ -43,10 +43,10 @@ HashBox::HashBox(QWidget *parent) :
|
|||
QScrollArea(parent),
|
||||
ui(new Ui::HashBox)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
|
||||
mAutoHide = false;
|
||||
dropWidget = NULL;
|
||||
mAutoHide = false;
|
||||
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
HashBox::~HashBox()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue