mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-11-26 15:20:29 +01:00
2016-05-24 Fred Gleason <fredg@paravelsystems.com>
* Removed all CVS tags. * Removed 'const char *name' parameter from all QObject contructors.
This commit is contained in:
@@ -3,9 +3,7 @@
|
||||
// This implements a widget that represents a stereo audio level meter,
|
||||
// complete with labels and scale.
|
||||
//
|
||||
// (C) Copyright 2002-2003 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: rdplaymeter.cpp,v 1.3 2010/07/29 19:32:33 cvs Exp $
|
||||
// (C) Copyright 2002-2016 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU Library General Public License
|
||||
@@ -37,14 +35,14 @@
|
||||
|
||||
#include <rdplaymeter.h>
|
||||
|
||||
RDPlayMeter::RDPlayMeter(RDSegMeter::Orientation orient,QWidget *parent,const char *name)
|
||||
: QWidget(parent,name)
|
||||
RDPlayMeter::RDPlayMeter(RDSegMeter::Orientation orient,QWidget *parent)
|
||||
: QWidget(parent)
|
||||
{
|
||||
meter_label=QString("");
|
||||
setBackgroundColor(black);
|
||||
orientation=orient;
|
||||
makeFont();
|
||||
meter=new RDSegMeter(orientation,this,"meter");
|
||||
meter=new RDSegMeter(orientation,this);
|
||||
meter->setSegmentSize(5);
|
||||
meter->setSegmentGap(1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user