aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-sound/kid3/files/kid3-1.6-id3form-usability.patch')
-rw-r--r--media-sound/kid3/files/kid3-1.6-id3form-usability.patch92
1 files changed, 0 insertions, 92 deletions
diff --git a/media-sound/kid3/files/kid3-1.6-id3form-usability.patch b/media-sound/kid3/files/kid3-1.6-id3form-usability.patch
deleted file mode 100644
index 7702e9b..0000000
--- a/media-sound/kid3/files/kid3-1.6-id3form-usability.patch
+++ /dev/null
@@ -1,92 +0,0 @@
---- kid3/id3form.cpp 2010-12-07 20:55:43.000000000 +0100
-+++ kid3/id3form.cpp 2011-04-29 12:41:05.731664449 +0200
-@@ -273,14 +273,14 @@
- fileLayout->setMargin(margin);
- fileLayout->setSpacing(spacing);
-
-- m_nameLabel = new QLabel(i18n("Name:"), m_fileWidget);
-+ m_nameLabel = new QLabel(i18n("Filename:"), m_fileWidget);
- fileLayout->addWidget(m_nameLabel, 0, 0);
-
- m_nameLineEdit = new QLineEdit(m_fileWidget);
- fileLayout->addWidget(m_nameLineEdit, 0, 1, 1, 4);
- m_fileLabel->setBuddy(m_nameLineEdit);
-
-- QLabel* formatLabel = new QLabel(i18n("Format:") + QChar(0x2191),
-+ QLabel* formatLabel = new QLabel(i18n("Set Filename from Tags:"),
- m_fileWidget);
- fileLayout->addWidget(formatLabel, 1, 0);
-
-@@ -291,16 +291,12 @@
- m_formatComboBox->setToolTip(FrameFormatReplacer::getToolTip());
- fileLayout->addWidget(m_formatComboBox, 1, 1);
-
-- QLabel* fromTagLabel = new QLabel(i18n("From:"), m_fileWidget);
-- fileLayout->addWidget(fromTagLabel, 1, 2);
-- m_fnV1Button = new QPushButton(i18n("Tag 1"), m_fileWidget);
-- m_fnV1Button->setToolTip(i18n("Filename from Tag 1"));
-+ m_fnV1Button = new QPushButton(i18n("from Tag 1"), m_fileWidget);
- fileLayout->addWidget(m_fnV1Button, 1, 3);
-- QPushButton* fnV2Button = new QPushButton(i18n("Tag 2"), m_fileWidget);
-- fnV2Button->setToolTip(i18n("Filename from Tag 2"));
-+ QPushButton* fnV2Button = new QPushButton(i18n("from Tag 2"), m_fileWidget);
- fileLayout->addWidget(fnV2Button, 1, 4);
-
-- QLabel* formatFromFilenameLabel = new QLabel(i18n("Format:") + QChar(0x2193),
-+ QLabel* formatFromFilenameLabel = new QLabel(i18n("Set Tags from Filename:"),
- m_fileWidget);
- fileLayout->addWidget(formatFromFilenameLabel, 2, 0);
-
-@@ -314,12 +310,10 @@
- QLabel* toTagLabel = new QLabel(i18n("To:"), m_fileWidget);
- fileLayout->addWidget(toTagLabel, 2, 2);
- m_toTagV1Button =
-- new QPushButton(i18n("Tag 1"), m_fileWidget);
-- m_toTagV1Button->setToolTip(i18n("Tag 1 from Filename"));
-+ new QPushButton(i18n("to Tag 1"), m_fileWidget);
- fileLayout->addWidget(m_toTagV1Button, 2, 3);
- QPushButton* toTagV2Button =
-- new QPushButton(i18n("Tag 2"), m_fileWidget);
-- toTagV2Button->setToolTip(i18n("Tag 2 from Filename"));
-+ new QPushButton(i18n("to Tag 2"), m_fileWidget);
- fileLayout->addWidget(toTagV2Button, 2, 4);
-
- m_tag1Button = new QToolButton(m_rightHalfVBox);
-@@ -452,7 +446,7 @@
- fileLayout->addMultiCellWidget(m_nameLineEdit, 0, 0, 1, 4);
- m_fileLabel->setBuddy(m_nameLineEdit);
-
-- QLabel* formatLabel = new QLabel(i18n("Format:") + QChar(0x2191),
-+ QLabel* formatLabel = new QLabel(i18n("Set Filename from Tags:"),
- m_fileWidget);
- fileLayout->addWidget(formatLabel, 1, 0);
-
-@@ -466,11 +460,9 @@
- QLabel* fromTagLabel = new QLabel(i18n("From:"), m_fileWidget);
- fileLayout->addWidget(fromTagLabel, 1, 2);
- m_fnV1Button = new QPushButton(i18n("Tag 1"), m_fileWidget);
-- QToolTip::add(m_fnV1Button, i18n("Filename from Tag 1"));
-- fileLayout->addWidget(m_fnV1Button, 1, 3);
-+ fileLayout->addWidget(m_fnV1Button, 1, 2);
- QPushButton* fnV2Button = new QPushButton(i18n("Tag 2"), m_fileWidget);
-- QToolTip::add(fnV2Button, i18n("Filename from Tag 2"));
-- fileLayout->addWidget(fnV2Button, 1, 4);
-+ fileLayout->addWidget(fnV2Button, 1, 3);
-
- QLabel* formatFromFilenameLabel = new QLabel(i18n("Format:") + QChar(0x2193),
- m_fileWidget);
-@@ -487,12 +479,10 @@
- fileLayout->addWidget(toTagLabel, 2, 2);
- m_toTagV1Button =
- new QPushButton(i18n("Tag 1"), m_fileWidget);
-- QToolTip::add(m_toTagV1Button, i18n("Tag 1 from Filename"));
-- fileLayout->addWidget(m_toTagV1Button, 2, 3);
-+ fileLayout->addWidget(m_toTagV1Button, 2, 2);
- QPushButton* toTagV2Button =
- new QPushButton(i18n("Tag 2"), m_fileWidget);
-- QToolTip::add(toTagV2Button, i18n("Tag 2 from Filename"));
-- fileLayout->addWidget(toTagV2Button, 2, 4);
-+ fileLayout->addWidget(toTagV2Button, 2, 3);
-
- m_tag1Button = new QToolButton(m_rightHalfVBox);
- m_tag1Button->setIconSet(*s_collapsePixmap);