mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
* Fixed rsStatus=NULL bug, for RS_RELEASE.
* switched on RS_RELEASE for v0.4.09a git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@599 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
9c2558dbf0
commit
9e947f26ca
@ -94,6 +94,8 @@
|
||||
* #define RS_RELEASE_VERSION 1
|
||||
****/
|
||||
|
||||
#define RS_RELEASE_VERSION 1
|
||||
|
||||
/** Constructor */
|
||||
MainWindow::MainWindow(QWidget* parent, Qt::WFlags flags)
|
||||
: QMainWindow(parent, flags)
|
||||
|
@ -196,7 +196,7 @@ void PeersDialog::insertPeers()
|
||||
|
||||
/* Append additional status info from status service */
|
||||
StatusInfo statusInfo;
|
||||
if (rsStatus->getStatus(*it, statusInfo))
|
||||
if ((rsStatus) && (rsStatus->getStatus(*it, statusInfo)))
|
||||
{
|
||||
status.append(QString::fromStdString("/" + RsStatusString(statusInfo.status)));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user