mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-11-29 16:50:13 +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 @@
|
||||
//
|
||||
// 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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user