corrected caps in MessageComposer (patch from Henry)

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8539 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
electron128 2015-06-22 10:57:05 +00:00
parent 99efa00c14
commit cfdbbc71c2
2 changed files with 50 additions and 50 deletions

View file

@ -243,21 +243,21 @@ MessageComposer::MessageComposer(QWidget *parent, Qt::WindowFlags flags)
QActionGroup *grp2 = new QActionGroup(this);
connect(grp2, SIGNAL(triggered(QAction *)), this, SLOT(textStyle(QAction *)));
actionDisc = new QAction(QIcon(""), tr("Bullet List (Disc)"), grp2);
actionDisc = new QAction(QIcon(""), tr("Bullet list (disc)"), grp2);
actionDisc->setCheckable(true);
actionCircle = new QAction(QIcon(""), tr("Bullet List (Circle)"), grp2);
actionCircle = new QAction(QIcon(""), tr("Bullet list (circle)"), grp2);
actionCircle->setCheckable(true);
actionSquare = new QAction(QIcon(""), tr("Bullet List (Square)"), grp2);
actionSquare = new QAction(QIcon(""), tr("Bullet list (square)"), grp2);
actionSquare->setCheckable(true);
actionDecimal= new QAction(QIcon(""), tr("Ordered List (Decimal)"), grp2);
actionDecimal= new QAction(QIcon(""), tr("Ordered list (decimal)"), grp2);
actionDecimal->setCheckable(true);
actionLowerAlpha = new QAction(QIcon(""), tr("Ordered List (Alpha lower)"), grp2);
actionLowerAlpha = new QAction(QIcon(""), tr("Ordered list (alpha lower)"), grp2);
actionLowerAlpha->setCheckable(true);
actionUpperAlpha = new QAction(QIcon(""), tr("Ordered List (Alpha upper)"), grp2);
actionUpperAlpha = new QAction(QIcon(""), tr("Ordered list (alpha upper)"), grp2);
actionUpperAlpha->setCheckable(true);
actionLowerRoman = new QAction(QIcon(""), tr("Ordered List (Roman lower"), grp2);
actionLowerRoman = new QAction(QIcon(""), tr("Ordered list (roman lower)"), grp2);
actionLowerRoman->setCheckable(true);
actionUpperRoman = new QAction(QIcon(""), tr("Ordered List (Roman upper)"), grp2);
actionUpperRoman = new QAction(QIcon(""), tr("Ordered list (roman upper)"), grp2);
actionUpperRoman->setCheckable(true);
setupFormatActions();