mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-16 10:01:14 -04:00
Corrected setLogInfo core dump state.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1176 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
83b1fc5e1f
commit
6f59bd806b
3 changed files with 4 additions and 8 deletions
|
@ -274,15 +274,9 @@ void NotifyQt::UpdateGUI()
|
|||
switch(type)
|
||||
{
|
||||
case RS_SYS_ERROR:
|
||||
cDialog->setLogInfo(QString(logMesString.c_str()));
|
||||
break;
|
||||
case RS_SYS_WARNING:
|
||||
cDialog->setLogInfo(QString(logMesString.c_str()));
|
||||
break;
|
||||
default:
|
||||
case RS_SYS_INFO:
|
||||
cDialog->setLogInfo(QString(logMesString.c_str()));
|
||||
break;
|
||||
case RS_SYS_INFO: emit logInfoChanged(QString(logMesString.c_str()));
|
||||
default:;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -68,6 +68,7 @@ class NotifyQt: public QObject, public NotifyBase
|
|||
void neighborsChanged() const ;
|
||||
void messagesChanged() const ;
|
||||
void configChanged() const ;
|
||||
void logInfoChanged(const QString&) const ;
|
||||
void chatStatusChanged(const QString&,const QString&) const ;
|
||||
#ifdef TURTLE_HOPPING
|
||||
void gotTurtleSearchResult(qulonglong search_id,TurtleFileInfo file) const ;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue