mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-05 22:56:38 -05:00
File and class renames part 1
Most files and most of the core classes and their methods have been
renamed to match new coding style conventions:
391 files changed, 25400 insertions(+), 25598 deletions(-)
Furthermore splitted some files where model and view classes were
declared or implemented together in the same file.
Should be tested thoroughly as I might have missed renaming some virtual
methods or SIGNAL/SLOT parameters.
(cherry picked from commit 8c9a9dd14c)
This commit is contained in:
@@ -2,8 +2,8 @@
|
||||
* ControllerConnectionDialog.cpp - dialog allowing the user to create and
|
||||
* modify links between controllers and models
|
||||
*
|
||||
* Copyright (c) 2008 Paul Giblock <drfaygo/at/gmail.com>
|
||||
*
|
||||
* Copyright (c) 2008 Paul Giblock <drfaygo/at/gmail.com>
|
||||
*
|
||||
* This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
@@ -23,7 +23,6 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#include <QtGui/QLayout>
|
||||
#include <QtGui/QLineEdit>
|
||||
#include <QtGui/QPushButton>
|
||||
@@ -46,10 +45,11 @@
|
||||
#include "gui_templates.h"
|
||||
#include "embed.h"
|
||||
|
||||
|
||||
class AutoDetectMidiController : public MidiController
|
||||
{
|
||||
public:
|
||||
AutoDetectMidiController( model * _parent ) :
|
||||
AutoDetectMidiController( Model * _parent ) :
|
||||
MidiController( _parent ),
|
||||
m_detectedMidiChannel( 0 ),
|
||||
m_detectedMidiController( 0 )
|
||||
@@ -82,7 +82,7 @@ public:
|
||||
|
||||
// Would be a nice copy ctor, but too hard to add copy ctor because
|
||||
// model has none.
|
||||
MidiController * copyToMidiController( model * _parent )
|
||||
MidiController * copyToMidiController( Model * _parent )
|
||||
{
|
||||
MidiController * c = new MidiController( _parent );
|
||||
c->m_midiPort.setInputChannel( m_midiPort.inputChannel() );
|
||||
@@ -127,8 +127,7 @@ private:
|
||||
|
||||
|
||||
ControllerConnectionDialog::ControllerConnectionDialog( QWidget * _parent,
|
||||
const automatableModel * _target_model
|
||||
) :
|
||||
const AutomatableModel * _target_model ) :
|
||||
QDialog( _parent ),
|
||||
m_readablePorts( NULL ),
|
||||
m_midiAutoDetect( false ),
|
||||
|
||||
Reference in New Issue
Block a user