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

« back to all changes in this revision

Viewing changes to src/gui/widgets/formatbox.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:
49
49
   * @param title  title
50
50
   * @param parent parent widget
51
51
   */
52
 
  FormatBox(const QString& title, QWidget* parent = 0);
 
52
  explicit FormatBox(const QString& title, QWidget* parent = 0);
53
53
 
54
54
  /**
55
55
   * Destructor.
61
61
   *
62
62
   * @param cfg format configuration
63
63
   */
64
 
  void fromFormatConfig(const FormatConfig* cfg);
 
64
  void fromFormatConfig(const FormatConfig& cfg);
65
65
 
66
66
  /**
67
67
   * Store the values in a format configuration.
68
68
   *
69
69
   * @param cfg format configuration
70
70
   */
71
 
  void toFormatConfig(FormatConfig* cfg) const;
 
71
  void toFormatConfig(FormatConfig& cfg) const;
72
72
 
73
73
private:
74
74
  QComboBox* m_caseConvComboBox;