Move track.h -> Track.h, track.cpp -> Track.cpp

This commit is contained in:
Lukas W
2014-11-25 17:10:49 +01:00
parent 9dfb1385cd
commit d318cbb1e7
15 changed files with 17 additions and 17 deletions

View File

@@ -30,7 +30,7 @@
#include <QtCore/QMap>
#include <QtCore/QPointer>
#include "track.h"
#include "Track.h"
class AutomationTrack;

View File

@@ -25,7 +25,7 @@
#ifndef AUTOMATION_PATTERN_VIEW_H
#define AUTOMATION_PATTERN_VIEW_H
#include "track.h"
#include "Track.h"
class AutomationPattern;

View File

@@ -27,7 +27,7 @@
#ifndef AUTOMATION_TRACK_H
#define AUTOMATION_TRACK_H
#include "track.h"
#include "Track.h"
class AutomationTrack : public Track

View File

@@ -35,7 +35,7 @@
#include "Piano.h"
#include "PianoView.h"
#include "Pitch.h"
#include "track.h"
#include "Track.h"
class QLineEdit;

View File

@@ -29,7 +29,7 @@
#include "lmmsconfig.h"
#include "note.h"
#include "PlayHandle.h"
#include "track.h"
#include "Track.h"
#include "MemoryManager.h"
#include <QtCore/QAtomicInt>
#include <QtCore/QReadWriteLock>

View File

@@ -34,7 +34,7 @@
#include "note.h"
#include "track.h"
#include "Track.h"
class QAction;

View File

@@ -28,7 +28,7 @@
#include <QDialog>
#include "AudioPort.h"
#include "track.h"
#include "Track.h"
class EffectRackView;
class knob;

View File

@@ -1,5 +1,5 @@
/*
* track.h - declaration of classes concerning tracks -> necessary for all
* Track.h - declaration of classes concerning tracks -> necessary for all
* track-like objects (beat/bassline, sample-track...)
*
* Copyright (c) 2004-2014 Tobias Doerffel <tobydox/at/users.sourceforge.net>

View File

@@ -28,7 +28,7 @@
#include <QtCore/QReadWriteLock>
#include "track.h"
#include "Track.h"
#include "JournallingObject.h"

View File

@@ -31,7 +31,7 @@
#include <QWidget>
#include "track.h"
#include "Track.h"
#include "JournallingObject.h"

View File

@@ -30,7 +30,7 @@
#include <QtCore/QObject>
#include <QtCore/QMap>
#include "track.h"
#include "Track.h"
class trackLabelButton;
class TrackContainer;

View File

@@ -14,7 +14,7 @@
#include "InstrumentTrack.h"
#include "note.h"
#include "Pattern.h"
#include "track.h"
#include "Track.h"
#include "bb_track.h"
#include "bb_track_container.h"
#include "Instrument.h"

View File

@@ -1,5 +1,5 @@
/*
* track.cpp - implementation of classes concerning tracks -> necessary for
* Track.cpp - implementation of classes concerning tracks -> necessary for
* all track-like objects (beat/bassline, sample-track...)
*
* Copyright (c) 2004-2014 Tobias Doerffel <tobydox/at/users.sourceforge.net>
@@ -23,7 +23,7 @@
*
*/
/** \file track.cpp
/** \file Track.cpp
* \brief All classes concerning tracks and track-like objects
*/
@@ -35,7 +35,7 @@
* \todo fill this out
*/
#include "track.h"
#include "Track.h"
#include <assert.h>
#include <cstdio>

View File

@@ -44,7 +44,7 @@
#include "rubberband.h"
#include "song.h"
#include "string_pair_drag.h"
#include "track.h"
#include "Track.h"
TrackContainerView::TrackContainerView( TrackContainer * _tc ) :

View File

@@ -41,7 +41,7 @@
#include "TempoSyncKnob.h"
#include "text_float.h"
#include "tooltip.h"
#include "track.h"
#include "Track.h"
extern const float SECS_PER_ENV_SEGMENT;