summaryrefslogtreecommitdiff
path: root/muse2/muse/song.h
diff options
context:
space:
mode:
Diffstat (limited to 'muse2/muse/song.h')
-rw-r--r--muse2/muse/song.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/muse2/muse/song.h b/muse2/muse/song.h
index 44d5efa6..8777fb2c 100644
--- a/muse2/muse/song.h
+++ b/muse2/muse/song.h
@@ -30,6 +30,7 @@
#include <map>
#include <set>
+#include "type_defs.h"
#include "pos.h"
#include "globaldefs.h"
#include "tempo.h"
@@ -128,8 +129,7 @@ class Song : public QObject {
TempoFifo _tempoFifo; // External tempo changes, processed in heartbeat.
- int updateFlags;
- int updateFlags2; // Extra room for more flags
+ MusECore::SongChangedFlags_t updateFlags;
TrackList _tracks; // tracklist as seen by arranger
MidiTrackList _midis;
@@ -346,7 +346,7 @@ class Song : public QObject {
//-----------------------------------------
void startUndo();
- void endUndo(int /*flags*/, int /*flags2*/ = 0);
+ void endUndo(MusECore::SongChangedFlags_t);
void undoOp(UndoOp::UndoType type, const char* changedFile, const char* changeData, int startframe, int endframe);
@@ -372,7 +372,7 @@ class Song : public QObject {
//-----------------------------------------
void dumpMaster();
- void addUpdateFlags(int f, int f2 = 0) { updateFlags |= f; updateFlags2 |= f2; }
+ void addUpdateFlags(MusECore::SongChangedFlags_t f) { updateFlags |= f; }
//-----------------------------------------
// Python bridge related
@@ -386,7 +386,7 @@ class Song : public QObject {
void seekTo(int tick);
// use allowRecursion with care! this could lock up muse if you
// aren't sure that your recursion will be finite!
- void update(int flags = -1, int flags2 = 0, bool allowRecursion=false);
+ void update(MusECore::SongChangedFlags_t flags = -1, bool allowRecursion=false);
void beat();
void undo();
@@ -420,7 +420,7 @@ class Song : public QObject {
void populateScriptMenu(QMenu* menuPlugins, QObject* receiver);
signals:
- void songChanged(int /*flags*/, int /*flags2*/ = 0);
+ void songChanged(MusECore::SongChangedFlags_t);
void posChanged(int, unsigned, bool);
void loopChanged(bool);
void recordChanged(bool);