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 @@
##
## rdrepld/ Makefile.am for Rivendell
##
## (C) Copyright 2010 Fred Gleason <fredg@paravelsystems.com>
##
## $Id: Makefile.am,v 1.2 2010/07/29 19:32:37 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 @@
//
// Replicator implementation for the Citadel XDS Portal
//
// (C) Copyright 2010 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: citadelxds.cpp,v 1.6 2012/03/02 22:33:51 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 @@
//
// Replicator implementation for the Citadel XDS Portal
//
// (C) Copyright 2010 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: citadelxds.h,v 1.3 2011/10/17 18:48:41 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 @@
//
// The Rivendell Replicator Daemon Global Definitions
//
// (C) Copyright 2010 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: globals.h,v 1.2 2010/07/29 19:32:37 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
@@ -29,4 +27,5 @@
extern RDConfig *rdconfig;
extern RDSystem *rdsystem;
#endif // GLOBALS_H

View File

@@ -2,9 +2,7 @@
//
// The Rivendell Replicator Daemon
//
// (C) Copyright 2010 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: rdrepld.cpp,v 1.4 2011/06/21 22:20:44 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
@@ -37,7 +35,6 @@
#include <citadelxds.h>
#include <rdrepld.h>
RDConfig *rdconfig;
RDSystem *rdsystem;
@@ -63,8 +60,8 @@ void SigHandler(int signum)
}
MainObject::MainObject(QObject *parent,const char *name)
:QObject(parent,name)
MainObject::MainObject(QObject *parent)
:QObject(parent)
{
bool skip_db_check=false;
unsigned schema=0;
@@ -153,7 +150,7 @@ MainObject::MainObject(QObject *parent,const char *name)
//
// Start the Main Loop
//
repl_loop_timer=new QTimer(this,"repl_loop_timer");
repl_loop_timer=new QTimer(this);
connect(repl_loop_timer,SIGNAL(timeout()),this,SLOT(mainLoop()));
repl_loop_timer->start(RD_RDREPL_SCAN_INTERVAL,true);
@@ -296,6 +293,6 @@ void MainObject::FreeReplicators()
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 @@
//
// The Rivendell Replicator Daemon
//
// (C) Copyright 2010 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: rdrepld.h,v 1.2 2010/07/29 19:32:37 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
@@ -43,7 +41,7 @@ class MainObject : public QObject
{
Q_OBJECT
public:
MainObject(QObject *parent=0,const char *name=0);
MainObject(QObject *parent=0);
private slots:
void mainLoop();

View File

@@ -2,9 +2,7 @@
//
// A container class for a Rivendell replication configuration
//
// (C) Copyright 2010 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: replconfig.cpp,v 1.2 2010/07/29 19:32:37 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 @@
//
// A container class for a Rivendell replication configuration
//
// (C) Copyright 2010 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: replconfig.h,v 1.2 2010/07/29 19:32:37 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 @@
//
// Virtual base class for replicator methods
//
// (C) Copyright 2010 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: replfactory.cpp,v 1.2 2010/07/29 19:32:37 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 @@
//
// Virtual base class for replicator methods
//
// (C) Copyright 2010 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: replfactory.h,v 1.2 2010/07/29 19:32:37 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