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

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Mark Purcell, Patrick Matthäi, Mark Purcell
  • Date: 2013-11-30 15:44:59 UTC
  • mfrom: (1.1.16) (2.1.18 sid)
  • Revision ID: package-import@ubuntu.com-20131130154459-s6lpalx8yy2zq7gx
Tags: 3.0.2-1
* New upstream release 

[ Patrick Matthäi ]
* New upstream release.
  - Add new libreadline-dev build dependency.
* Don't explicitly request xz compression - dpkg 1.17 does this by default.
* Bump Standards-Version to 3.9.5 (no changes needed).
* Fix Vcs-Browser control field.

[ Mark Purcell ]
* Switch to dh - reduce debian/rules bloat
* kid3 Replaces kid3-qt - low popcon, reduce archive bloat
* Fix vcs-field-not-canonical
* debian/compat -> 9
* Update Description:

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
#include <QStringList>
32
32
#include "trackdata.h"
33
33
 
 
34
class IPlatformTools;
34
35
class QTextEdit;
35
36
class QTableView;
36
37
class QPushButton;
49
50
  /**
50
51
   * Constructor.
51
52
   *
 
53
   * @param platformTools platform tools
52
54
   * @param parent       parent widget
53
55
   * @param textExporter text exporter to use
54
56
   */
55
 
  ExportDialog(QWidget* parent, TextExporter* textExporter);
 
57
  ExportDialog(IPlatformTools* platformTools,
 
58
               QWidget* parent, TextExporter* textExporter);
56
59
 
57
60
  /**
58
61
   * Destructor.
103
106
   */
104
107
  void setFormatFromConfig();
105
108
 
 
109
  IPlatformTools* m_platformTools;
106
110
  /** Text editor */
107
111
  QTextEdit* m_edit;
108
112
  /** Table view */