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

« back to all changes in this revision

Viewing changes to src/core/tags/frame.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:
361
361
  /**
362
362
   * Set frame inactive.
363
363
   */
364
 
  void setInactive() { m_value = QString::null; }
 
364
  void setInactive() { m_value = QString(); }
365
365
 
366
366
  /**
367
367
   * Check if frame represents different frames in multiple files.
481
481
};
482
482
 
483
483
/** Filter to enable a subset of frame types. */
484
 
class FrameFilter {
 
484
class KID3_CORE_EXPORT FrameFilter {
485
485
public:
486
486
  /**
487
487
   * Constructor.
808
808
    s_quickAccessFrames = mask;
809
809
  }
810
810
 
 
811
  /**
 
812
   * Get mask containing the bits of all frame types which shall be used as
 
813
   * quick access frames.
 
814
   * @return mask bit mask with bits for quick access frames set.
 
815
   */
 
816
  static quint64 getQuickAccessFrames() {
 
817
    return s_quickAccessFrames;
 
818
  }
 
819
 
811
820
private:
812
821
  /**
813
822
   * Search for a frame only by name.