~ubuntu-branches/ubuntu/wily/kid3/wily

« back to all changes in this revision

Viewing changes to src/gui/dialogs/exportdialog.cpp

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2014-05-05 10:39:24 UTC
  • mfrom: (1.1.17) (2.1.22 sid)
  • Revision ID: package-import@ubuntu.com-20140505103924-9q6a67b7mespmojg
Tags: 3.1-1
* New upstream release.
  - Drop merged patch 01-desktop-keywords.

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
 
79
79
  QString formatToolTip = ImportTrackData::getFormatToolTip();
80
80
  m_formatListEdit = new FormatListEdit(
81
 
        QStringList() << tr("Format:")
82
 
                      << tr("Header:")
83
 
                      << tr("Tracks:")
84
 
                      << tr("Footer:"),
 
81
        QStringList() << tr("&Format:")
 
82
                      << tr("H&eader:")
 
83
                      << tr("&Tracks:")
 
84
                      << tr("F&ooter:"),
85
85
        QStringList() << QString()
86
86
                      << formatToolTip
87
87
                      << formatToolTip
92
92
  vlayout->addWidget(m_formatListEdit);
93
93
 
94
94
  QHBoxLayout* butlayout = new QHBoxLayout;
95
 
  m_fileButton = new QPushButton(tr("To F&ile"), this);
 
95
  m_fileButton = new QPushButton(tr("To F&ile..."), this);
96
96
  m_fileButton->setAutoDefault(false);
97
97
  butlayout->addWidget(m_fileButton);
98
98
  connect(m_fileButton, SIGNAL(clicked()), this, SLOT(slotToFile()));