mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-12-14 16:18:48 -05:00
Fix UserNotify ToolTip
This commit is contained in:
parent
33007f902f
commit
e2e89dc971
17 changed files with 121 additions and 80 deletions
|
|
@ -94,6 +94,16 @@ unsigned int ChatUserNotify::getNewCount()
|
|||
return sum;
|
||||
}
|
||||
|
||||
QString ChatUserNotify::getTrayMessage(bool plural)
|
||||
{
|
||||
return plural ? tr("You have %1 mentions") : tr("You have %1 mention");
|
||||
}
|
||||
|
||||
QString ChatUserNotify::getNotifyMessage(bool plural)
|
||||
{
|
||||
return plural ? tr("%1 mentions") : tr("%1 mention");
|
||||
}
|
||||
|
||||
void ChatUserNotify::iconClicked()
|
||||
{
|
||||
ChatDialog *chatDialog = NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue