Rename automatable_button to AutomatableButton

This commit is contained in:
Lukas W
2014-11-26 01:21:42 +01:00
parent ac95123d41
commit c33bef346a
11 changed files with 37 additions and 37 deletions

View File

@@ -1,5 +1,5 @@
/*
* automatable_button.h - class automatableButton, the base for all buttons
* AutomatableButton.h - class automatableButton, the base for all buttons
*
* Copyright (c) 2006-2008 Tobias Doerffel <tobydox/at/users.sourceforge.net>
*
@@ -34,13 +34,13 @@
class automatableButtonGroup;
class EXPORT automatableButton : public QPushButton, public BoolModelView
class EXPORT AutomatableButton : public QPushButton, public BoolModelView
{
Q_OBJECT
public:
automatableButton( QWidget * _parent, const QString & _name
AutomatableButton( QWidget * _parent, const QString & _name
= QString::null );
virtual ~automatableButton();
virtual ~AutomatableButton();
inline void setCheckable( bool _on )
{
@@ -87,10 +87,10 @@ public:
= QString::null );
virtual ~automatableButtonGroup();
void addButton( automatableButton * _btn );
void removeButton( automatableButton * _btn );
void addButton( AutomatableButton * _btn );
void removeButton( AutomatableButton * _btn );
void activateButton( automatableButton * _btn );
void activateButton( AutomatableButton * _btn );
virtual void modelChanged();
@@ -100,7 +100,7 @@ private slots:
private:
QList<automatableButton *> m_buttons;
QList<AutomatableButton *> m_buttons;
} ;

View File

@@ -26,13 +26,13 @@
#ifndef LED_CHECKBOX_H
#define LED_CHECKBOX_H
#include "automatable_button.h"
#include "AutomatableButton.h"
class QPixmap;
class EXPORT ledCheckBox : public automatableButton
class EXPORT ledCheckBox : public AutomatableButton
{
Q_OBJECT
public:

View File

@@ -28,10 +28,10 @@
#include <QPixmap>
#include "automatable_button.h"
#include "AutomatableButton.h"
class EXPORT pixmapButton : public automatableButton
class EXPORT pixmapButton : public AutomatableButton
{
Q_OBJECT
public: