comparison base/Selection.h @ 1580:c01cbe41aeb5 fix-static-analysis

Use override throughout
author Chris Cannam
date Mon, 26 Nov 2018 13:48:45 +0000
parents 6e9615bde1f9
children 82596b4deef6
comparison
equal deleted inserted replaced
1579:232d6ddf257d 1580:c01cbe41aeb5
81 * selected area, return the next selection after the given frame. 81 * selected area, return the next selection after the given frame.
82 * Return the empty selection if no appropriate selection is found. 82 * Return the empty selection if no appropriate selection is found.
83 */ 83 */
84 Selection getContainingSelection(sv_frame_t frame, bool defaultToFollowing) const; 84 Selection getContainingSelection(sv_frame_t frame, bool defaultToFollowing) const;
85 85
86 virtual void toXml(QTextStream &stream, QString indent = "", 86 void toXml(QTextStream &stream, QString indent = "",
87 QString extraAttributes = "") const; 87 QString extraAttributes = "") const override;
88 88
89 protected: 89 protected:
90 SelectionList m_selections; 90 SelectionList m_selections;
91 }; 91 };
92 92