mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-11-25 23:00:21 +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:
@@ -2,9 +2,7 @@
|
||||
//
|
||||
// Insert Audio for a Voice Track
|
||||
//
|
||||
// (C) Copyright 2002-2006 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: import_track.cpp,v 1.7 2010/07/29 19:32:37 cvs Exp $
|
||||
// (C) Copyright 2002-2006,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 General Public License version 2 as
|
||||
@@ -40,13 +38,10 @@
|
||||
|
||||
#include <import_track.h>
|
||||
|
||||
|
||||
extern RDStation *rdstation_conf;
|
||||
|
||||
|
||||
ImportTrack::ImportTrack(QString *filter,QString *group,
|
||||
QWidget *parent,const char *name)
|
||||
: QDialog(parent,name,true,Qt::WStyle_Customize|Qt::WStyle_DialogBorder)
|
||||
ImportTrack::ImportTrack(QString *filter,QString *group,QWidget *parent)
|
||||
: QDialog(parent,"",true,Qt::WStyle_Customize|Qt::WStyle_DialogBorder)
|
||||
{
|
||||
setCaption("");
|
||||
|
||||
@@ -74,7 +69,7 @@ ImportTrack::ImportTrack(QString *filter,QString *group,
|
||||
//
|
||||
// Title Label
|
||||
//
|
||||
QLabel *label=new QLabel(tr("Insert audio from a:"),this,"title_label");
|
||||
QLabel *label=new QLabel(tr("Insert audio from a:"),this);
|
||||
label->setGeometry(0,0,sizeHint().width(),30);
|
||||
label->setFont(label_font);
|
||||
label->setAlignment(AlignCenter);
|
||||
@@ -82,7 +77,7 @@ ImportTrack::ImportTrack(QString *filter,QString *group,
|
||||
//
|
||||
// Cart Button
|
||||
//
|
||||
QPushButton *button=new QPushButton(this,"cart_button");
|
||||
QPushButton *button=new QPushButton(this);
|
||||
button->setGeometry(10,30,sizeHint().width()-20,50);
|
||||
button->setFont(button_font);
|
||||
button->setText(tr("&Cart"));
|
||||
@@ -99,7 +94,7 @@ ImportTrack::ImportTrack(QString *filter,QString *group,
|
||||
//
|
||||
// Import Button
|
||||
//
|
||||
button=new QPushButton(this,"import_button");
|
||||
button=new QPushButton(this);
|
||||
button->setGeometry(10,80,sizeHint().width()-20,50);
|
||||
button->setFont(button_font);
|
||||
button->setText(tr("&File"));
|
||||
@@ -116,7 +111,7 @@ ImportTrack::ImportTrack(QString *filter,QString *group,
|
||||
//
|
||||
// Cancel Button
|
||||
//
|
||||
button=new QPushButton(this,"cancel_button");
|
||||
button=new QPushButton(this);
|
||||
button->setGeometry(10,140,sizeHint().width()-20,50);
|
||||
button->setFont(button_font);
|
||||
button->setText(tr("&Cancel"));
|
||||
|
||||
Reference in New Issue
Block a user