Mercurial > hg > svcore
diff base/Selection.h @ 928:6a94bb528e9d warnfix_no_size_t
Remove size_t's, fix compiler warnings
author | Chris Cannam |
---|---|
date | Tue, 17 Jun 2014 13:52:07 +0100 |
parents | 70a232b1f12a |
children | d03b3d956358 |
line wrap: on
line diff
--- a/base/Selection.h Tue Jun 03 11:05:49 2014 +0100 +++ b/base/Selection.h Tue Jun 17 13:52:07 2014 +0100 @@ -25,22 +25,22 @@ { public: Selection(); - Selection(size_t startFrame, size_t endFrame); + Selection(int startFrame, int endFrame); Selection(const Selection &); Selection &operator=(const Selection &); virtual ~Selection(); bool isEmpty() const; - size_t getStartFrame() const; - size_t getEndFrame() const; - bool contains(size_t frame) const; + int getStartFrame() const; + int getEndFrame() const; + bool contains(int frame) const; bool operator<(const Selection &) const; bool operator==(const Selection &) const; protected: - size_t m_startFrame; - size_t m_endFrame; + int m_startFrame; + int m_endFrame; }; class MultiSelection : public XmlExportable @@ -57,7 +57,7 @@ void removeSelection(const Selection &selection); void clearSelections(); - void getExtents(size_t &startFrame, size_t &endFrame) const; + void getExtents(int &startFrame, int &endFrame) const; /** * Return the selection that contains a given frame. @@ -65,7 +65,7 @@ * selected area, return the next selection after the given frame. * Return the empty selection if no appropriate selection is found. */ - Selection getContainingSelection(size_t frame, bool defaultToFollowing) const; + Selection getContainingSelection(int frame, bool defaultToFollowing) const; virtual void toXml(QTextStream &stream, QString indent = "", QString extraAttributes = "") const;