mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-26 07:55:44 -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
2 changed files with 3 additions and 1 deletions
|
@ -94,6 +94,8 @@
|
||||||
* #define RS_RELEASE_VERSION 1
|
* #define RS_RELEASE_VERSION 1
|
||||||
****/
|
****/
|
||||||
|
|
||||||
|
#define RS_RELEASE_VERSION 1
|
||||||
|
|
||||||
/** Constructor */
|
/** Constructor */
|
||||||
MainWindow::MainWindow(QWidget* parent, Qt::WFlags flags)
|
MainWindow::MainWindow(QWidget* parent, Qt::WFlags flags)
|
||||||
: QMainWindow(parent, flags)
|
: QMainWindow(parent, flags)
|
||||||
|
|
|
@ -196,7 +196,7 @@ void PeersDialog::insertPeers()
|
||||||
|
|
||||||
/* Append additional status info from status service */
|
/* Append additional status info from status service */
|
||||||
StatusInfo statusInfo;
|
StatusInfo statusInfo;
|
||||||
if (rsStatus->getStatus(*it, statusInfo))
|
if ((rsStatus) && (rsStatus->getStatus(*it, statusInfo)))
|
||||||
{
|
{
|
||||||
status.append(QString::fromStdString("/" + RsStatusString(statusInfo.status)));
|
status.append(QString::fromStdString("/" + RsStatusString(statusInfo.status)));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue