mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-11-26 15:20:29 +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,10 +2,7 @@
|
||||
##
|
||||
## Automake.am for rivendell/importers
|
||||
##
|
||||
## (C) Copyright 2002-2006 Fred Gleason <fredg@paravelsystems.com>
|
||||
##
|
||||
## $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 <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
|
||||
|
||||
@@ -4,10 +4,7 @@
|
||||
#
|
||||
# Export the current Rivendell archive as a SLAX module.
|
||||
#
|
||||
# (C) Copyright 2006 Fred Gleason <fredg@paravelsystems.com>
|
||||
#
|
||||
# $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 <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
|
||||
|
||||
@@ -4,8 +4,6 @@
|
||||
//
|
||||
// (C) Copyright 2012 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $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.
|
||||
@@ -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;
|
||||
@@ -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,8 +4,6 @@
|
||||
//
|
||||
// (C) Copyright 2012 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $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.
|
||||
@@ -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);
|
||||
|
||||
@@ -4,9 +4,6 @@
|
||||
//
|
||||
// (C) Copyright 2002-2005 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $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.
|
||||
@@ -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;
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
@@ -2,10 +2,7 @@
|
||||
//
|
||||
// A utility for copying SoundPanel assignments between databases.
|
||||
//
|
||||
// (C) Copyright 2002-2005 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $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 <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
|
||||
@@ -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;
|
||||
|
||||
@@ -2,10 +2,7 @@
|
||||
//
|
||||
// An RDCatch event copier.
|
||||
//
|
||||
// (C) Copyright 2002-2005 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: rdcatch_copy.cpp,v 1.8 2010/07/29 19:32:32 cvs Exp $
|
||||
// $Date: 2010/07/29 19:32:32 $
|
||||
// (C) Copyright 2002-2005,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,8 +30,8 @@
|
||||
#include <rdcmd_switch.h>
|
||||
#include <rddb.h>
|
||||
|
||||
MainObject::MainObject(QObject *parent,const char *name)
|
||||
: QObject(parent,name)
|
||||
MainObject::MainObject(QObject *parent)
|
||||
: QObject(parent)
|
||||
{
|
||||
bool found=false;
|
||||
QString src_hostname;
|
||||
@@ -330,6 +327,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();
|
||||
}
|
||||
|
||||
@@ -2,10 +2,7 @@
|
||||
//
|
||||
// An RDCatch event copier.
|
||||
//
|
||||
// (C) Copyright 2002-2005 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: rdcatch_copy.h,v 1.6 2010/07/29 19:32:32 cvs Exp $
|
||||
// $Date: 2010/07/29 19:32:32 $
|
||||
// (C) Copyright 2002-2005,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
|
||||
@@ -40,7 +37,7 @@ class MainObject : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
MainObject(QObject *parent=0,const char *name=0);
|
||||
MainObject(QObject *parent=0);
|
||||
|
||||
private:
|
||||
QSqlDatabase *src_db;
|
||||
|
||||
@@ -4,9 +4,6 @@
|
||||
//
|
||||
// (C) Copyright 2002-2005,2008 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: rivendell_filter.cpp,v 1.3 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.
|
||||
@@ -46,8 +43,8 @@
|
||||
RDConfig *rdconfig;
|
||||
|
||||
|
||||
MainObject::MainObject(QObject *parent,const char *name)
|
||||
: QObject(parent,name)
|
||||
MainObject::MainObject(QObject *parent)
|
||||
: QObject(parent)
|
||||
{
|
||||
QString ext_dbname;
|
||||
QString ext_hostname;
|
||||
@@ -492,6 +489,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();
|
||||
}
|
||||
|
||||
@@ -4,9 +4,6 @@
|
||||
//
|
||||
// (C) Copyright 2002-2005, 2008 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: rivendell_filter.h,v 1.3 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.
|
||||
@@ -36,7 +33,7 @@ class MainObject : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
MainObject(QObject *parent=0,const char *name=0);
|
||||
MainObject(QObject *parent=0);
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -4,9 +4,6 @@
|
||||
//
|
||||
// (C) Copyright 2002-2004 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: sas_filter.cpp,v 1.11 2011/06/21 22:20:43 cvs Exp $
|
||||
// $Date: 2011/06/21 22:20:43 $
|
||||
//
|
||||
// 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.
|
||||
@@ -42,8 +39,8 @@
|
||||
//
|
||||
|
||||
|
||||
MainObject::MainObject(QObject *parent,const char *name)
|
||||
: QObject(parent,name)
|
||||
MainObject::MainObject(QObject *parent)
|
||||
: QObject(parent)
|
||||
{
|
||||
bool skip_db_check=false;
|
||||
unsigned schema=0;
|
||||
@@ -95,7 +92,7 @@ MainObject::MainObject(QObject *parent,const char *name)
|
||||
//
|
||||
// RDCatchd Connection
|
||||
//
|
||||
filter_connect=new RDCatchConnect(0,this,"filter_connect");
|
||||
filter_connect=new RDCatchConnect(0,this);
|
||||
filter_connect->connectHost("localhost",RDCATCHD_TCP_PORT,
|
||||
rd_config->password());
|
||||
|
||||
@@ -278,6 +275,6 @@ void MainObject::InjectCartEvent(QString sql,int gpo)
|
||||
int main(int argc,char *argv[])
|
||||
{
|
||||
QApplication a(argc,argv,false);
|
||||
new MainObject(NULL,"main");
|
||||
new MainObject(NULL);
|
||||
return a.exec();
|
||||
}
|
||||
|
||||
@@ -4,9 +4,6 @@
|
||||
//
|
||||
// (C) Copyright 2002-2004 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: sas_filter.h,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.
|
||||
@@ -40,7 +37,7 @@ class MainObject : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
MainObject(QObject *parent=0,const char *name=0);
|
||||
MainObject(QObject *parent=0);
|
||||
|
||||
private:
|
||||
void InsertList();
|
||||
|
||||
@@ -4,9 +4,6 @@
|
||||
//
|
||||
// (C) Copyright 2002-2004 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: wings_filter.cpp,v 1.13 2010/07/29 19:32:33 cvs Exp $
|
||||
// $Date: 2010/07/29 19:32:33 $
|
||||
//
|
||||
// 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.
|
||||
@@ -43,8 +40,8 @@
|
||||
RDConfig *rdconfig;
|
||||
|
||||
|
||||
MainObject::MainObject(QObject *parent,const char *name)
|
||||
: QObject(parent,name)
|
||||
MainObject::MainObject(QObject *parent)
|
||||
: QObject(parent)
|
||||
{
|
||||
//
|
||||
// Read Command Options
|
||||
@@ -324,6 +321,6 @@ void MainObject::TrimSpaces(char *str)
|
||||
int main(int argc,char *argv[])
|
||||
{
|
||||
QApplication a(argc,argv,false);
|
||||
new MainObject(NULL,"main");
|
||||
new MainObject(NULL);
|
||||
return a.exec();
|
||||
}
|
||||
|
||||
@@ -4,9 +4,6 @@
|
||||
//
|
||||
// (C) Copyright 2002-2005 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: wings_filter.h,v 1.9 2010/07/29 19:32:33 cvs Exp $
|
||||
// $Date: 2010/07/29 19:32:33 $
|
||||
//
|
||||
// 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.
|
||||
@@ -56,7 +53,7 @@ class MainObject : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
MainObject(QObject *parent=0,const char *name=0);
|
||||
MainObject(QObject *parent=0);
|
||||
|
||||
private:
|
||||
bool ImportCut(RDGroup *group,struct WingsRecord *rec,RDWaveFile *wavefile);
|
||||
|
||||
Reference in New Issue
Block a user