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

@@ -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;