made enumeration match current coding style

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1180 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2008-06-27 15:01:37 +00:00
parent 4fc41a4694
commit 563d5b8b5b
5 changed files with 14 additions and 15 deletions

View File

@@ -36,14 +36,17 @@ class EXPORT ledCheckBox : public automatableButton
{
Q_OBJECT
public:
enum ledColors
enum LedColors
{
YELLOW, GREEN, TOTAL_COLORS
Yellow,
Green,
Red,
NumColors
} ;
ledCheckBox( const QString & _txt, QWidget * _parent,
const QString & _name = QString::null,
ledColors _color = YELLOW );
LedColors _color = Yellow );
virtual ~ledCheckBox();