Skip to content

Commit

Permalink
2016-05-24 Fred Gleason <[email protected]>
Browse files Browse the repository at this point in the history
	* Removed all CVS tags.
	* Removed 'const char *name' parameter from all QObject contructors.
  • Loading branch information
ElvishArtisan committed May 24, 2016
1 parent db9da6d commit 698b475
Show file tree
Hide file tree
Showing 1,059 changed files with 4,810 additions and 7,950 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -15155,3 +15155,6 @@
'LOGS.START_DATE' and 'LOGS.END_DATE' fields in the database
[GitHub issue #000121].
* Incremented the database version to 257.
2016-05-24 Fred Gleason <[email protected]>
* Removed all CVS tags.
* Removed 'const char *name' parameter from all QObject contructors.
4 changes: 1 addition & 3 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
##
## Use automake to process this into a Makefile.in
##
## (C) Copyright 2002-2010 Fred Gleason <[email protected]>
##
## $Id: Makefile.am,v 1.65.6.6 2013/01/14 16:35:58 cvs Exp $
## (C) Copyright 2002-2016 Fred Gleason <[email protected]>
##
## 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
Expand Down
4 changes: 1 addition & 3 deletions acinclude.m4
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@ dnl acinclude.m4
dnl
dnl Local Autoconf macro definitions for LibRHpi
dnl
dnl (C) Copyright 2006 Fred Gleason <[email protected]>
dnl (C) Copyright 2006,2016 Fred Gleason <[email protected]>
dnl
dnl BNV_HAVE_QT Macro Copyright (C) 2001, 2002, 2003, 2005, 2006
dnl Bastiaan Veelo
dnl
dnl $Id: acinclude.m4,v 1.7.8.2 2012/08/08 19:48:29 cvs Exp $
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License version 2 as
dnl published by the Free Software Foundation.
Expand Down
4 changes: 1 addition & 3 deletions autogen.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
#!/bin/sh
##
## (C) Copyright 2002-2003 Fred Gleason <[email protected]>
##
## $Id: autogen.sh,v 1.5 2010/07/29 19:32:30 cvs Exp $
## (C) Copyright 2002-2003,2016 Fred Gleason <[email protected]>
##
## Adapted from './autogen.sh' in the Jack Audio Connection Kit.
## Copyright (C) 2001-2003 Paul Davis, et al.
Expand Down
4 changes: 1 addition & 3 deletions cae/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
##
## Core Audio Engine Makefile.am for Rivendell
##
## Copyright 2002-2006 Fred Gleason <[email protected]>
##
## $Id: Makefile.am,v 1.33.8.1 2012/11/29 01:37:34 cvs Exp $
## Copyright 2002-2006,2016 Fred Gleason <[email protected]>
##
## 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
Expand Down
2 changes: 1 addition & 1 deletion cae/cae.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ void MainObject::newConnection(int fd)
close(fd);
return;
}
socket[i]=new RDSocket(i,this,"socket_0");
socket[i]=new RDSocket(i,this);
socket[i]->setSocket(fd);
connect(socket[i],SIGNAL(readyReadID(int)),this,SLOT(socketData(int)));
connect(socket[i],SIGNAL(connectionClosedID(int)),
Expand Down
6 changes: 2 additions & 4 deletions cae/cae_hpi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
//
// The HPI Driver for the Core Audio Engine component of Rivendell
//
// (C) Copyright 2002-2004 Fred Gleason <[email protected]>
//
// $Id: cae_hpi.cpp,v 1.38.6.2 2012/11/30 16:14:58 cvs Exp $
// (C) Copyright 2002-2004,2016 Fred Gleason <[email protected]>
//
// 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
Expand Down Expand Up @@ -33,7 +31,7 @@ void MainObject::hpiInit(RDStation *station)
play[i][j]=NULL;
}
}
sound_card=new RDHPISoundCard(this,"sound_card");
sound_card=new RDHPISoundCard(this);
sound_card->setFadeProfile(RD_FADE_TYPE);
for(int i=0;i<sound_card->getCardQuantity();i++) {
cae_driver[i]=RDStation::Hpi;
Expand Down
4 changes: 1 addition & 3 deletions cae/cae_socket.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
//
// The Core Audio Engine component of Rivendell
//
// (C) Copyright 2002 Fred Gleason <[email protected]>
//
// $Id: cae_socket.cpp,v 1.9 2010/07/29 19:32:30 cvs Exp $
// (C) Copyright 2002,2016 Fred Gleason <[email protected]>
//
// 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
Expand Down
4 changes: 1 addition & 3 deletions cae/cae_socket.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
//
// The Core Audio Engine component of Rivendell
//
// (C) Copyright 2002 Fred Gleason <[email protected]>
//
// $Id: cae_socket.h,v 1.7 2010/07/29 19:32:30 cvs Exp $
// (C) Copyright 2002,2016 Fred Gleason <[email protected]>
//
// 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
Expand Down
4 changes: 1 addition & 3 deletions conf/rd-bin.conf.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
#
# This is the Apache Web Server configuration for Rivendell.
#
# (C) Copyright 2007,2010 Fred Gleason <[email protected]>
#
# $Id: rd-bin.conf.in,v 1.5 2011/06/23 19:47:28 cvs Exp $
# (C) Copyright 2007,2010,2016 Fred Gleason <[email protected]>
#
# 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
Expand Down
5 changes: 1 addition & 4 deletions debian/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@
##
## Use automake to process this into a Makefile.in
##
## (C) Copyright 2002-2005 Fred Gleason <[email protected]>
##
## $Id: Makefile.am,v 1.9.14.1 2012/11/29 01:37:35 cvs Exp $
## $Date: 2012/11/29 01:37:35 $
## (C) Copyright 2002-2005,2016 Fred Gleason <[email protected]>
##
## 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
Expand Down
5 changes: 1 addition & 4 deletions debian/patches/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@
##
## Use automake to process this into a Makefile.in
##
## (C) Copyright 2002-2005 Fred Gleason <[email protected]>
##
## $Id: Makefile.am,v 1.1 2007/06/07 15:09:43 grauf Exp $
## $Date: 2007/06/07 15:09:43 $
## (C) Copyright 2002-2005,2016 Fred Gleason <[email protected]>
##
## 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
Expand Down
5 changes: 1 addition & 4 deletions docs/examples/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@
##
## docs/examples/automake.am for Rivendell
##
## (C) Copyright 2002-2006 Fred Gleason <[email protected]>
##
## $Id: Makefile.am,v 1.1.6.1 2013/12/10 21:25:49 cvs Exp $
## $Date: 2013/12/10 21:25:49 $
## (C) Copyright 2002-2006,2016 Fred Gleason <[email protected]>
##
## 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
Expand Down
4 changes: 1 addition & 3 deletions get_distro.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
# Try to determine the distribution name and version of the host machine.
# Used as part of the AR_GET_DISTRO() macro.
#
# (C) Copyright 2012 Fred Gleason <[email protected]>
#
# $Id: get_distro.sh,v 1.1.1.1 2014/02/17 13:26:17 cvs Exp $
# (C) Copyright 2012,2016 Fred Gleason <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as
Expand Down
4 changes: 1 addition & 3 deletions get_target.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
# Return machine target information from gcc(1)
# Used as part of the AR_GCC_TARGET() macro.
#
# (C) Copyright 2012 Fred Gleason <[email protected]>
#
# $Id: get_target.sh,v 1.1.1.1 2014/02/17 13:26:17 cvs Exp $
# (C) Copyright 2012,2016 Fred Gleason <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as
Expand Down
5 changes: 1 addition & 4 deletions helpers/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@
##
## helper/ Automake.am for Rivendell
##
## (C) Copyright 2003-2005 Fred Gleason <[email protected]>
##
## $Id: Makefile.am,v 1.9.6.1 2012/11/29 01:37:35 cvs Exp $
## $Date: 2012/11/29 01:37:35 $
## (C) Copyright 2003-2005,2016 Fred Gleason <[email protected]>
##
## Use automake to process this into a Makefile.in
##
Expand Down
5 changes: 1 addition & 4 deletions helpers/cwrap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@
// A utility for wrapping arbitrary file data in C-compaibile source
// statements.
//
// (C) Copyright 2003 Fred Gleason <[email protected]>
//
// $Id: cwrap.cpp,v 1.3 2007/02/14 21:48:41 fredg Exp $
// $Date: 2007/02/14 21:48:41 $
// (C) Copyright 2003,2016 Fred Gleason <[email protected]>
//
// 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
Expand Down
5 changes: 1 addition & 4 deletions helpers/cwrap.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@
// A utility for wrapping arbitrary file data in C-compaibile source
// statements.
//
// (C) Copyright 2003 Fred Gleason <[email protected]>
//
// $Id: cwrap.h,v 1.3 2007/02/14 21:48:41 fredg Exp $
// $Date: 2007/02/14 21:48:41 $
// (C) Copyright 2003,2016 Fred Gleason <[email protected]>
//
// 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
Expand Down
5 changes: 1 addition & 4 deletions helpers/rdpack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@
#
# A shell utility for packaging Rivendell translation files.
#
# (C) Copyright 2005,2008 Fred Gleason <[email protected]>
#
# $Id: rdpack.sh,v 1.6 2010/07/29 19:32:32 cvs Exp $
# $Date: 2010/07/29 19:32:32 $
# (C) Copyright 2005,2008,2016 Fred Gleason <[email protected]>
#
# 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
Expand Down
5 changes: 1 addition & 4 deletions helpers/rdtrans.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@
#
# A shell utility for managing Rivendell translation files.
#
# (C) Copyright 2005,2008 Fred Gleason <[email protected]>
#
# $Id: rdtrans.sh,v 1.7 2010/07/29 19:32:32 cvs Exp $
# $Date: 2010/07/29 19:32:32 $
# (C) Copyright 2005,2008,2016 Fred Gleason <[email protected]>
#
# 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
Expand Down
5 changes: 1 addition & 4 deletions helpers/rdtransgui.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@
# A GUi interface for rdtrans.sh script that is used to manage Rivendell
# translation files.
#
# (C) Copyright 2010 Frederick Henderson <[email protected]>
#
# $Id: rdtransgui.sh,v 1.1 2011/03/01 21:00:07 cvs Exp $
# $Date: 2011/03/01 21:00:07 $
# (C) Copyright 2010,2016 Frederick Henderson <[email protected]>
#
# 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
Expand Down
5 changes: 1 addition & 4 deletions helpers/setenvvar.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@
# A utility for setting environmental variables to be used by the
# rdtrans.sh script that is used to manage Rivendell translation files.
#
# (C) Copyright 2010 Frederick Henderson <[email protected]>
#
# $Id: setenvvar.sh,v 1.1 2011/03/01 21:00:07 cvs Exp $
# $Date: 2011/03/01 21:00:07 $
# (C) Copyright 2010,2016 Frederick Henderson <[email protected]>
#
# 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
Expand Down
5 changes: 1 addition & 4 deletions icons/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@
##
## icons/automake.am for Rivendell
##
## (C) Copyright 2002-2006 Fred Gleason <[email protected]>
##
## $Id: Makefile.am,v 1.19.2.3 2013/12/30 19:56:11 cvs Exp $
## $Date: 2013/12/30 19:56:11 $
## (C) Copyright 2002-2006,2016 Fred Gleason <[email protected]>
##
## 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
Expand Down
5 changes: 1 addition & 4 deletions importers/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@
##
## Automake.am for rivendell/importers
##
## (C) Copyright 2002-2006 Fred Gleason <[email protected]>
##
## $Id: Makefile.am,v 1.18.8.2 2012/11/29 01:37:35 cvs Exp $
## $Date: 2012/11/29 01:37:35 $
## (C) Copyright 2002-2006,2016 Fred Gleason <[email protected]>
##
## 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
Expand Down
5 changes: 1 addition & 4 deletions importers/export_slax
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@
#
# Export the current Rivendell archive as a SLAX module.
#
# (C) Copyright 2006 Fred Gleason <[email protected]>
#
# $Id: export_slax,v 1.4 2007/02/14 21:48:41 fredg Exp $
# $Date: 2007/02/14 21:48:41 $
# (C) Copyright 2006,2016 Fred Gleason <[email protected]>
#
# 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
Expand Down
8 changes: 3 additions & 5 deletions importers/nexgen_filter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
//
// (C) Copyright 2012 Fred Gleason <[email protected]>
//
// $Id: nexgen_filter.cpp,v 1.1.2.8 2013/06/20 20:24:45 cvs Exp $
//
// 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
// published by the Free Software Foundation.
Expand Down Expand Up @@ -55,8 +53,8 @@
RDConfig *rdconfig;


MainObject::MainObject(QObject *parent,const char *name)
: QObject(parent,name)
MainObject::MainObject(QObject *parent)
: QObject(parent)
{
QString group_name;
QString audio_dir;
Expand Down Expand Up @@ -708,6 +706,6 @@ void MainObject::Print(const QString &msg) const
int main(int argc,char *argv[])
{
QApplication a(argc,argv,false);
new MainObject(NULL,"main");
new MainObject(NULL);
return a.exec();
}
4 changes: 1 addition & 3 deletions importers/nexgen_filter.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
//
// (C) Copyright 2012 Fred Gleason <[email protected]>
//
// $Id: nexgen_filter.h,v 1.1.2.5 2013/06/20 20:24:45 cvs Exp $
//
// 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
// published by the Free Software Foundation.
Expand Down Expand Up @@ -42,7 +40,7 @@ class MainObject : public QObject
{
Q_OBJECT
public:
MainObject(QObject *parent=0,const char *name=0);
MainObject(QObject *parent=0);

private:
void ProcessArchive(const QString &filename);
Expand Down
9 changes: 3 additions & 6 deletions importers/panel_copy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
//
// (C) Copyright 2002-2005 Fred Gleason <[email protected]>
//
// $Id: panel_copy.cpp,v 1.7 2010/07/29 19:32:32 cvs Exp $
// $Date: 2010/07/29 19:32:32 $
//
// 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
// published by the Free Software Foundation.
Expand All @@ -33,8 +30,8 @@
#include <rdcmd_switch.h>


MainObject::MainObject(QObject *parent,const char *name)
: QObject(parent,name)
MainObject::MainObject(QObject *parent)
: QObject(parent)
{
bool found=false;
QString src_hostname;
Expand Down Expand Up @@ -214,6 +211,6 @@ MainObject::MainObject(QObject *parent,const char *name)
int main(int argc,char *argv[])
{
QApplication a(argc,argv,false);
new MainObject(NULL,"main");
new MainObject(NULL);
return a.exec();
}
7 changes: 2 additions & 5 deletions importers/panel_copy.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@
//
// A utility for copying SoundPanel assignments between databases.
//
// (C) Copyright 2002-2005 Fred Gleason <[email protected]>
//
// $Id: panel_copy.h,v 1.5 2010/07/29 19:32:32 cvs Exp $
// $Date: 2010/07/29 19:32:32 $
// (C) Copyright 2002-2005,2016 Fred Gleason <[email protected]>
//
// 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
Expand Down Expand Up @@ -36,7 +33,7 @@ class MainObject : public QObject
{
Q_OBJECT
public:
MainObject(QObject *parent=0,const char *name=0);
MainObject(QObject *parent=0);

private:
QSqlDatabase *src_db;
Expand Down
Loading

0 comments on commit 698b475

Please sign in to comment.