added help string for notify page

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6825 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2013-10-13 12:16:46 +00:00
parent cf8d6682da
commit 8e220c691b
2 changed files with 11 additions and 1 deletions

View File

@ -126,6 +126,16 @@ uint NotifyPage::getNewsFlags()
return newsFlags;
}
QString NotifyPage::helpText() const
{
return tr("<h1><img width=\"24\" src=\":/images/64px_help.png\">&nbsp;&nbsp;Notify</h1> \
<p>Retroshare will notify you about what happens in your network. \
Depending on your usage, you may want to enable or disable some of the \
notifications. This page is designed for that!</p> \
") ;
}
uint NotifyPage::getNotifyFlags()
{
uint notifyFlags = 0;

View File

@ -69,7 +69,7 @@ public:
virtual QPixmap iconPixmap() const { return QPixmap(":/images/status_unknown.png") ; }
virtual QString pageName() const { return tr("Notify") ; }
virtual QString helpText() const { return ""; }
virtual QString helpText() const ;
private slots:
void notifyToggled();