Rename bb_track_container to BBTrackContainer

This commit is contained in:
Lukas W
2014-11-26 00:46:49 +01:00
parent 7d0e3945e5
commit c2360f593c
20 changed files with 126 additions and 45 deletions

View File

@@ -1,5 +1,5 @@
/*
* bb_track_container.h - model-component of BB-Editor
* BBTrackContainer.h - model-component of BB-Editor
*
* Copyright (c) 2004-2014 Tobias Doerffel <tobydox/at/users.sourceforge.net>
*
@@ -30,13 +30,13 @@
#include "combobox.h"
class EXPORT bbTrackContainer : public TrackContainer
class EXPORT BBTrackContainer : public TrackContainer
{
Q_OBJECT
mapPropertyFromModel(int,currentBB,setCurrentBB,m_bbComboBoxModel);
public:
bbTrackContainer();
virtual ~bbTrackContainer();
BBTrackContainer();
virtual ~BBTrackContainer();
virtual bool play( MidiTime _start, const fpp_t _frames,
const f_cnt_t _frame_base, int _tco_num = -1 );

View File

@@ -29,7 +29,7 @@
#include "TrackContainerView.h"
class bbTrackContainer;
class BBTrackContainer;
class comboBox;
class toolButton;
@@ -38,7 +38,7 @@ class bbEditor : public TrackContainerView
{
Q_OBJECT
public:
bbEditor( bbTrackContainer * _tc );
bbEditor( BBTrackContainer * _tc );
virtual ~bbEditor();
virtual inline bool fixedTCOs() const
@@ -64,7 +64,7 @@ public slots:
private:
virtual void keyPressEvent( QKeyEvent * _ke );
bbTrackContainer * m_bbtc;
BBTrackContainer * m_bbtc;
QWidget * m_toolBar;
toolButton * m_playButton;

View File

@@ -35,7 +35,7 @@
class AutomationEditor;
class bbEditor;
class bbTrackContainer;
class BBTrackContainer;
class DummyTrackContainer;
class FxMixer;
class FxMixerView;
@@ -87,7 +87,7 @@ public:
return s_song;
}
static bbTrackContainer * getBBTrackContainer()
static BBTrackContainer * getBBTrackContainer()
{
return s_bbTrackContainer;
}
@@ -179,7 +179,7 @@ private:
static Mixer *s_mixer;
static FxMixer * s_fxMixer;
static Song * s_song;
static bbTrackContainer * s_bbTrackContainer;
static BBTrackContainer * s_bbTrackContainer;
static ProjectJournal * s_projectJournal;
static DummyTrackContainer * s_dummyTC;
static ControllerRackView * s_controllerRackView;