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 @@
//
// 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();
}