summaryrefslogtreecommitdiffstats
path: root/src/track/cue.cpp
diff options
context:
space:
mode:
authorUwe Klotz <uklotz@mixxx.org>2020-03-02 11:49:03 +0100
committerUwe Klotz <uklotz@mixxx.org>2020-03-02 13:55:35 +0100
commit488faeb17214dbea0ad858c813e71ca4b3a4072e (patch)
tree681555b3ef5bd42016cf93c164e7c2cf8d87a9f7 /src/track/cue.cpp
parent18a134faba514f60a273a9b0aa2f3c9a6a09f214 (diff)
Reformat code: Wrap long lines
Diffstat (limited to 'src/track/cue.cpp')
-rw-r--r--src/track/cue.cpp18
1 files changed, 15 insertions, 3 deletions
diff --git a/src/track/cue.cpp b/src/track/cue.cpp
index b171b1244d..e11cb432af 100644
--- a/src/track/cue.cpp
+++ b/src/track/cue.cpp
@@ -21,7 +21,8 @@ void CuePointer::deleteLater(Cue* pCue) {
}
}
-Cue::Cue(TrackId trackId)
+Cue::Cue(
+ TrackId trackId)
: m_bDirty(false),
m_iId(-1),
m_trackId(trackId),
@@ -34,7 +35,15 @@ Cue::Cue(TrackId trackId)
DEBUG_ASSERT(!m_label.isNull());
}
-Cue::Cue(int id, TrackId trackId, mixxx::CueType type, double position, double length, int hotCue, QString label, PredefinedColorPointer color)
+Cue::Cue(
+ int id,
+ TrackId trackId,
+ mixxx::CueType type,
+ double position,
+ double length,
+ int hotCue,
+ QString label,
+ PredefinedColorPointer color)
: m_bDirty(false),
m_iId(id),
m_trackId(trackId),
@@ -55,7 +64,10 @@ Cue::Cue(int id, TrackId trackId, mixxx::CueType type, double position, double l
}
}
-Cue::Cue(TrackId trackId, mixxx::AudioSignal::SampleRate sampleRate, const mixxx::CueInfo& cueInfo)
+Cue::Cue(
+ TrackId trackId,
+ mixxx::AudioSignal::SampleRate sampleRate,
+ const mixxx::CueInfo& cueInfo)
: m_bDirty(false),
m_iId(-1),
m_trackId(trackId),