From 071903fd486c8542f3f9d6886f764f05891907f4 Mon Sep 17 00:00:00 2001 From: csoler Date: Sun, 4 Jan 2009 21:25:18 +0000 Subject: [PATCH] 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 --- retroshare-gui/src/gui/MainWindow.cpp | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/retroshare-gui/src/gui/MainWindow.cpp b/retroshare-gui/src/gui/MainWindow.cpp index 9073f01d0..139951013 100644 --- a/retroshare-gui/src/gui/MainWindow.cpp +++ b/retroshare-gui/src/gui/MainWindow.cpp @@ -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 */