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:
Fred Gleason
2016-05-24 13:13:26 -04:00
parent db9da6dc62
commit 698b475933
1059 changed files with 4795 additions and 7935 deletions

View File

@@ -2,9 +2,7 @@
##
## Automake.am for rivendell/web
##
## (C) Copyright 2002-2007 Fred Gleason <fredg@paravelsystems.com>
##
## $Id: Makefile.am,v 1.4.8.1 2012/11/29 01:37:38 cvs Exp $
## (C) Copyright 2002-2007,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 as

View File

@@ -2,9 +2,7 @@
##
## Automake.am for rivendell/web/rdcastmanager
##
## (C) Copyright 2002-2007 Fred Gleason <fredg@paravelsystems.com>
##
## $Id: Makefile.am,v 1.4.8.1 2012/11/29 01:37:38 cvs Exp $
## (C) Copyright 2002-2007,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

View File

@@ -2,9 +2,7 @@
//
// An RSS Feed Generator for Rivendell.
//
// (C) Copyright 2002-2009 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: rdcastmanager.cpp,v 1.14.4.1 2013/11/13 23:36:40 cvs Exp $
// (C) Copyright 2002-2009,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
@@ -46,8 +44,8 @@
char server_name[PATH_MAX];
MainObject::MainObject(QObject *parent,const char *name)
:QObject(parent,name)
MainObject::MainObject(QObject *parent)
:QObject(parent)
{
//
// Initialize Variables
@@ -1923,6 +1921,6 @@ void MainObject::Exit(int code)
int main(int argc,char *argv[])
{
QApplication a(argc,argv,false);
new MainObject(NULL,"main");
new MainObject();
return a.exec();
}

View File

@@ -2,9 +2,7 @@
//
// Web-Based RSS Podcast Manager for Rivendell.
//
// (C) Copyright 2002-2007 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: rdcastmanager.h,v 1.5 2010/07/29 19:32:40 cvs Exp $
// (C) Copyright 2002-2007,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
@@ -20,7 +18,6 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
#ifndef RDCASTMANAGER_H
#define RDCASTMANAGER_H
@@ -53,7 +50,7 @@
class MainObject : public QObject
{
public:
MainObject(QObject *parent=0,const char *name=0);
MainObject(QObject *parent=0);
private:
int AuthenticatePost();

View File

@@ -2,9 +2,7 @@
//
// Script for displaying an upload progress dialog in a web browser.
//
// (C) Copyright 2009 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: rdcastmanager.js,v 1.2 2010/07/29 19:32:40 cvs Exp $
// (C) Copyright 2009,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

View File

@@ -2,9 +2,7 @@
##
## Automake.am for rivendell/web/rdfeed
##
## (C) Copyright 2002-2007 Fred Gleason <fredg@paravelsystems.com>
##
## $Id: Makefile.am,v 1.7.8.1 2012/11/29 01:37:38 cvs Exp $
## (C) Copyright 2002-2007,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

View File

@@ -2,9 +2,7 @@
//
// An RSS Feed Generator for Rivendell.
//
// (C) Copyright 2002-2007 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: rdfeed_script.cpp,v 1.5.4.1 2013/10/16 21:14:38 cvs Exp $
// (C) Copyright 2002-2007,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
@@ -45,8 +43,8 @@
char server_name[PATH_MAX];
MainObject::MainObject(QObject *parent,const char *name)
:QObject(parent,name)
MainObject::MainObject(QObject *parent)
:QObject(parent)
{
char keyname[10];
int cast_id=-1;
@@ -392,6 +390,6 @@ void MainObject::Redirect(const QString &url)
int main(int argc,char *argv[])
{
QApplication a(argc,argv,false);
new MainObject(NULL,"main");
new MainObject();
return a.exec();
}

View File

@@ -2,9 +2,7 @@
//
// An RSS Feed Generator for Rivendell.
//
// (C) Copyright 2002-2007 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: rdfeed_script.h,v 1.2 2010/07/29 19:32:40 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 General Public License version 2 as
@@ -20,7 +18,6 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
#ifndef RDFEED_SCRIPT_H
#define RDFEED_SCRIPT_H
@@ -29,11 +26,10 @@
#include <rddb.h>
class MainObject : public QObject
{
public:
MainObject(QObject *parent=0,const char *name=0);
MainObject(QObject *parent=0);
private:
void ServeRss(const char *keyname,bool count);

View File

@@ -2,9 +2,7 @@
##
## Automake.am for rivendell/web/rdxport
##
## (C) Copyright 2010 Fred Gleason <fredg@paravelsystems.com>
##
## $Id: Makefile.am,v 1.6.6.3 2013/10/11 22:00:52 cvs Exp $
## (C) Copyright 2010,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

View File

@@ -2,9 +2,7 @@
//
// Rivendell web service portal -- AudioInfo service
//
// (C) Copyright 2011 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: audioinfo.cpp,v 1.4 2012/02/13 23:01:50 cvs Exp $
// (C) Copyright 2011,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

View File

@@ -2,7 +2,7 @@
//
// Rivendell web service portal -- AudioStore service
//
// (C) Copyright 2014 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2014,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

View File

@@ -2,9 +2,7 @@
//
// Rivendell web service portal -- CopyAudio service
//
// (C) Copyright 2010 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: copyaudio.cpp,v 1.4 2012/02/13 23:01:50 cvs Exp $
// (C) Copyright 2010,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

View File

@@ -2,9 +2,7 @@
//
// Rivendell web service portal -- DeleteAudio service
//
// (C) Copyright 2010 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: deleteaudio.cpp,v 1.6.2.1 2012/07/17 19:29:43 cvs Exp $
// (C) Copyright 2010,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

View File

@@ -2,9 +2,7 @@
//
// Rivendell web service portal -- ExportPeaks service
//
// (C) Copyright 2010 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: exportpeaks.cpp,v 1.4 2012/02/13 23:01:50 cvs Exp $
// (C) Copyright 2010,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

View File

@@ -2,9 +2,7 @@
//
// Rivendell web service portal -- Group services
//
// (C) Copyright 2010 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: groups.cpp,v 1.5 2012/02/13 23:01:50 cvs Exp $
// (C) Copyright 2010,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

View File

@@ -2,9 +2,7 @@
//
// Rivendell web service portal -- Import service
//
// (C) Copyright 2010 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: import.cpp,v 1.12.2.2 2014/01/15 19:56:32 cvs Exp $
// (C) Copyright 2010,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

View File

@@ -2,9 +2,7 @@
//
// Rivendell web service portal -- Log services
//
// (C) Copyright 2013 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: logs.cpp,v 1.1.2.4 2013/10/23 23:32:54 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

View File

@@ -2,9 +2,7 @@
//
// Rivendell web service portal
//
// (C) Copyright 2010 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: rdxport.cpp,v 1.10.2.3 2013/10/14 04:23:54 cvs Exp $
// (C) Copyright 2010,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
@@ -41,8 +39,8 @@
#include <rdxport.h>
Xport::Xport(QObject *parent,const char *name)
:QObject(parent,name)
Xport::Xport(QObject *parent)
:QObject(parent)
{
xport_user=NULL;
@@ -302,6 +300,6 @@ void Xport::XmlExit(const QString &str,int code,RDAudioConvert::ErrorCode err)
int main(int argc,char *argv[])
{
QApplication a(argc,argv,false);
new Xport(NULL,"main");
new Xport();
return a.exec();
}

View File

@@ -2,7 +2,7 @@
//
// Rivendell web service portal
//
// (C) Copyright 2010,2014 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2010,2014,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
@@ -33,7 +33,7 @@
class Xport : public QObject
{
public:
Xport(QObject *parent=0,const char *name=0);
Xport(QObject *parent=0);
private:
bool Authenticate();

View File

@@ -2,9 +2,7 @@
//
// Rivendell web service portal -- Service services
//
// (C) Copyright 2010 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: services.cpp,v 1.1.2.1 2013/10/11 22:00:53 cvs Exp $
// (C) Copyright 2010,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

View File

@@ -2,9 +2,7 @@
//
// Rivendell web service portal -- TrimAudio service
//
// (C) Copyright 2010 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: trimaudio.cpp,v 1.4 2012/02/13 23:01:50 cvs Exp $
// (C) Copyright 2010,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