Added patch from Henry

- Fixed some typos
- Fixed utf8 issue in DhtWindow



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7780 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2014-12-23 10:16:27 +00:00
parent 4bb15cd211
commit 7a562cfe9c
3 changed files with 3 additions and 3 deletions

View file

@ -56,6 +56,6 @@ ToasterDisable::ToasterDisable(QWidget *parent)
void ToasterDisable::disable(bool isDisable)
{
imageButton->setIcon(QIcon(isDisable ? IMAGE_TOASTERDISABLE : IMAGE_TOASTERENABLE));
imageButton->setToolTip(isDisable ? tr("All Toasters are disable") : tr("Toasters are enable"));
imageButton->setToolTip(isDisable ? tr("All Toasters are disabled") : tr("Toasters are enabled"));
imageButton->setChecked(isDisable);
}