From kde-commits Sat Aug 20 18:22:44 2016 From: Tobias Leupold Date: Sat, 20 Aug 2016 18:22:44 +0000 To: kde-commits Subject: [kphotoalbum] Settings: Changed to on the Settings::TagGroupsPage as this tag do Message-Id: X-MARC-Message: https://marc.info/?l=kde-commits&m=147171737316351 Git commit 404a00366102bf14519c2b256be55ce0c3252b02 by Tobias Leupold. Committed on 20/08/2016 at 18:21. Pushed by tleupold into branch 'master'. Changed to on the Settings::TagGroupsPage as this tag d= oesn't seem to be parsed anymore by QLabel (and is displayed as-is). M +3 -3 Settings/TagGroupsPage.cpp http://commits.kde.org/kphotoalbum/404a00366102bf14519c2b256be55ce0c3252b02 diff --git a/Settings/TagGroupsPage.cpp b/Settings/TagGroupsPage.cpp index ce3a64c..49b94a9 100644 --- a/Settings/TagGroupsPage.cpp +++ b/Settings/TagGroupsPage.cpp @@ -55,7 +55,7 @@ Settings::TagGroupsPage::TagGroupsPage(QWidget* parent) := QWidget(parent) connect(m_categoryTreeWidget, &CategoriesGroupsWidget::itemActivated, = this, &TagGroupsPage::slotGroupSelected); = // The member list - m_selectGroupToAddTags =3D i18nc("@label/rich","Select a gro= up on the left side to add tags to it"); + m_selectGroupToAddTags =3D i18nc("@label/rich","Select a group= on the left side to add tags to it"); m_tagsInGroupLabel =3D new QLabel(m_selectGroupToAddTags); layout->addWidget(m_tagsInGroupLabel, 0, 1); m_membersListWidget =3D new QListWidget; @@ -66,8 +66,8 @@ Settings::TagGroupsPage::TagGroupsPage(QWidget* parent) := QWidget(parent) connect(m_membersListWidget, &QListWidget::customContextMenuRequested,= this, &TagGroupsPage::showMembersContextMenu); = // The "pending rename actions" label - m_pendingChangesLabel =3D new QLabel(i18nc("@label/rich","Th= ere are pending changes on the categories page. " - "Please save the changes before working on tag groups.")); + m_pendingChangesLabel =3D new QLabel(i18nc("@label/rich","Ther= e are pending changes on the categories page. " + "Please save the changes before working on tag groups.")); m_pendingChangesLabel->hide(); layout->addWidget(m_pendingChangesLabel, 2, 0, 1, 2); =20