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/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