comparison filestates.h @ 355:a52970e7a6e0

Remove some no longer used functions
author Chris Cannam
date Thu, 17 Mar 2011 12:53:34 +0000
parents 6e1fdda1dff2
children 4cd753e083cc
comparison
equal deleted inserted replaced
354:f08ecba0f17b 355:a52970e7a6e0
49 49
50 bool isInState(QString file, State s) const; 50 bool isInState(QString file, State s) const;
51 QStringList filesInState(State s) const; 51 QStringList filesInState(State s) const;
52 State stateOf(QString file) const; 52 State stateOf(QString file) const;
53 53
54 /*!!! -- to remove: */
55 QStringList modified() const { return m_modified; }
56 QStringList added() const { return m_added; }
57 QStringList unknown() const { return m_unknown; }
58 QStringList removed() const { return m_removed; }
59 QStringList missing() const { return m_missing; }
60 QStringList inConflict() const { return m_inConflict; }
61 QStringList clean() const { return m_clean; }
62 QStringList ignored() const { return m_ignored; }
63
64 enum Activity { 54 enum Activity {
65 55
66 // These are in the order in which they want to be listed in 56 // These are in the order in which they want to be listed in
67 // the context menu 57 // the context menu
68 58