Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/track/keyfactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Keys KeyFactory::makePreferredKeys(

if (version == KEY_MAP_VERSION) {
KeyMap key_map;
for (const auto* it = key_changes.constBegin();
for (auto it = key_changes.constBegin();
it != key_changes.constEnd();
++it) {
// Key position is in frames. Do not accept fractional frames.
Expand Down
4 changes: 2 additions & 2 deletions src/track/keys.h
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#pragma once

#include <QByteArray>
#include <QList>
#include <QPair>
#include <QVector>

#include "proto/keys.pb.h"

#define KEY_MAP_VERSION "KeyMap-1.0"

typedef QVector<QPair<mixxx::track::io::key::ChromaticKey, double> > KeyChangeList;
typedef QList<QPair<mixxx::track::io::key::ChromaticKey, double> > KeyChangeList;
Comment thread
uklotzde marked this conversation as resolved.

class KeyFactory;

Expand Down