mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-11 07:05:48 +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 @@
|
||||
##
|
||||
## Automake.am for rivendell/utils/rddiscimport
|
||||
##
|
||||
## (C) Copyright 2002-2006 Fred Gleason <fredg@paravelsystems.com>
|
||||
##
|
||||
## $Id: Makefile.am,v 1.1.2.1 2013/12/03 23:34:35 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
|
||||
|
||||
@@ -2,9 +2,7 @@
|
||||
//
|
||||
// Abstract a library of metadata.
|
||||
//
|
||||
// (C) Copyright 2013 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: metalibrary.cpp,v 1.1.2.3 2013/12/04 22:22:49 cvs Exp $
|
||||
// (C) Copyright 2013,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
|
||||
|
||||
@@ -2,9 +2,7 @@
|
||||
//
|
||||
// Abstract a library of metadata.
|
||||
//
|
||||
// (C) Copyright 2013 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: metalibrary.h,v 1.1.2.1 2013/12/03 23:34:35 cvs Exp $
|
||||
// (C) Copyright 2013,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
|
||||
|
||||
@@ -2,9 +2,7 @@
|
||||
//
|
||||
// Container class for metadata
|
||||
//
|
||||
// (C) Copyright 2013 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: metarecord.cpp,v 1.1.2.3 2013/12/04 22:22:49 cvs Exp $
|
||||
// (C) Copyright 2013,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
|
||||
|
||||
@@ -2,9 +2,7 @@
|
||||
//
|
||||
// Container class for metadata
|
||||
//
|
||||
// (C) Copyright 2013 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: metarecord.h,v 1.1.2.3 2013/12/04 22:22:49 cvs Exp $
|
||||
// (C) Copyright 2013,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
|
||||
|
||||
@@ -2,9 +2,7 @@
|
||||
//
|
||||
// A Qt-based application for importing TM Century GoldDisc CDs
|
||||
//
|
||||
// (C) Copyright 2013 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: rddiscimport.cpp,v 1.1.2.10 2014/01/21 21:59:33 cvs Exp $
|
||||
// (C) Copyright 2013,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
|
||||
@@ -50,8 +48,8 @@
|
||||
|
||||
#include <rddiscimport.h>
|
||||
|
||||
MainWidget::MainWidget(QWidget *parent,const char *name)
|
||||
: QWidget(parent,name)
|
||||
MainWidget::MainWidget(QWidget *parent)
|
||||
: QWidget(parent)
|
||||
{
|
||||
dg_user=NULL;
|
||||
dg_group=NULL;
|
||||
@@ -292,7 +290,7 @@ MainWidget::MainWidget(QWidget *parent,const char *name)
|
||||
//
|
||||
// Eject Button
|
||||
//
|
||||
dg_eject_button=new RDTransportButton(RDTransportButton::Eject,this,"");
|
||||
dg_eject_button=new RDTransportButton(RDTransportButton::Eject,this);
|
||||
connect(dg_eject_button,SIGNAL(clicked()),dg_player,SLOT(eject()));
|
||||
|
||||
//
|
||||
@@ -753,7 +751,7 @@ int main(int argc,char *argv[])
|
||||
//
|
||||
// Start Event Loop
|
||||
//
|
||||
MainWidget *w=new MainWidget(NULL,"main");
|
||||
MainWidget *w=new MainWidget();
|
||||
a.setMainWidget(w);
|
||||
w->setGeometry(QRect(QPoint(0,0),w->sizeHint()));
|
||||
w->show();
|
||||
|
||||
@@ -2,9 +2,7 @@
|
||||
//
|
||||
// A Qt-based application for importing TM Century GoldDisc CDs
|
||||
//
|
||||
// (C) Copyright 2013 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: rddiscimport.h,v 1.1.2.4 2013/12/04 22:15:21 cvs Exp $
|
||||
// (C) Copyright 2013,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
|
||||
@@ -59,7 +57,7 @@ class MainWidget : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
MainWidget(QWidget *parent=0,const char *name=0);
|
||||
MainWidget(QWidget *parent=0);
|
||||
QSize sizeHint() const;
|
||||
|
||||
private slots:
|
||||
|
||||
@@ -2,9 +2,7 @@
|
||||
#
|
||||
# The utils/ QMake project file for Rivendell
|
||||
#
|
||||
# (C) Copyright 2003-2006 Fred Gleason <fredg@paravelsystems.com>
|
||||
#
|
||||
# $Id: rddiscimport.pro,v 1.1.2.2 2013/12/04 18:06:36 cvs Exp $
|
||||
# (C) Copyright 2003-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
|
||||
|
||||
Reference in New Issue
Block a user