Used GPGME_VALIDITY_... constants in ConfCertDialog and NetworkDialog.

Changed the usage of RsPeerDetails.validLvl to RsPeerDetails.trustLvl for the display in the column "Did I authenticated peer" in NetworkDialog.
Added an icon to the MessageBox of the NotifySysMessage.
Fixed german language.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3926 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2010-12-21 21:13:08 +00:00
parent ab42691a31
commit 312f23bd4e
7 changed files with 38 additions and 34 deletions

View file

@ -35,6 +35,7 @@
#endif
#include "RsAutoUpdatePage.h"
#include "MainWindow.h"
#ifndef MINIMAL_RSGUI
#include "toaster/OnlineToaster.h"
@ -508,18 +509,18 @@ void NotifyQt::UpdateGUI()
switch(type)
{
case RS_SYS_ERROR:
QMessageBox::critical(0,
QMessageBox::critical(MainWindow::getInstance(),
QString::fromStdString(title),
QString::fromStdString(msg));
break;
case RS_SYS_WARNING:
QMessageBox::warning(0,
QMessageBox::warning(MainWindow::getInstance(),
QString::fromStdString(title),
QString::fromStdString(msg));
break;
default:
case RS_SYS_INFO:
QMessageBox::information(0,
QMessageBox::information(MainWindow::getInstance(),
QString::fromStdString(title),
QString::fromStdString(msg));
break;