mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-23 22:49:37 -05:00
suspended hashing info, as it causes (rare) core dumps. I ll try to fix an asynchronous gui update properly.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@911 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
4ee6f4847f
commit
071903fd48
@ -119,14 +119,18 @@
|
||||
static QLabel *hash_info_label = NULL ;
|
||||
static void displayHashingInfo(const std::string& s)
|
||||
{
|
||||
if(hash_info_label != NULL)
|
||||
if(s == "")
|
||||
hash_info_label->hide() ;
|
||||
else
|
||||
{
|
||||
hash_info_label->show() ;
|
||||
hash_info_label->setText(QString::fromStdString(s)) ;
|
||||
}
|
||||
return ;
|
||||
|
||||
// I disabled this, because it's causing core dumps. I'll see what I can do.
|
||||
|
||||
// if(hash_info_label != NULL)
|
||||
// if(s == "")
|
||||
// hash_info_label->hide() ;
|
||||
// else
|
||||
// {
|
||||
// hash_info_label->show() ;
|
||||
// hash_info_label->setText(QString::fromStdString(s)) ;
|
||||
// }
|
||||
}
|
||||
|
||||
/** Constructor */
|
||||
|
Loading…
Reference in New Issue
Block a user