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/rdmonitor
##
## (C) Copyright 2012 Fred Gleason <fredg@paravelsystems.com>
##
## $Id: Makefile.am,v 1.1.2.4 2013/11/08 03:57:14 cvs Exp $
## (C) Copyright 2012,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 @@
//
// Dialog to set RDMonitor screen position.
//
// (C) Copyright 2013 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: positiondialog.cpp,v 1.1.2.2 2013/11/11 20:34:27 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 @@
//
// Dialog to set RDMonitor screen position.
//
// (C) Copyright 2013 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: positiondialog.h,v 1.1.2.1 2013/11/08 03:57:15 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 @@
//
// System Monitor for Rivendell
//
// (C) Copyright 2012 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: rdmonitor.cpp,v 1.1.2.13 2014/02/10 20:54:14 cvs Exp $
// (C) Copyright 2012,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
@@ -67,9 +65,8 @@ void SigHandler(int signo)
}
}
MainWidget::MainWidget(QWidget *parent,const char *name)
:QWidget(parent,name,Qt::WStyle_Customize|Qt::WStyle_NoBorder|Qt::WStyle_StaysOnTop|WX11BypassWM)
MainWidget::MainWidget(QWidget *parent)
:QWidget(parent,"",Qt::WStyle_Customize|Qt::WStyle_NoBorder|Qt::WStyle_StaysOnTop|WX11BypassWM)
{
QString str;
mon_dialog_x=0;
@@ -403,7 +400,7 @@ int main(int argc,char *argv[])
//
// Start Event Loop
//
MainWidget *w=new MainWidget(NULL,"main");
MainWidget *w=new MainWidget();
a.setMainWidget(w);
w->show();
return a.exec();

View File

@@ -2,9 +2,7 @@
//
// System Monitor Applet for Rivendell
//
// (C) Copyright 2012 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: rdmonitor.h,v 1.1.2.6 2013/11/08 03:57:15 cvs Exp $
// (C) Copyright 2012,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
@@ -47,7 +45,7 @@ class MainWidget : public QWidget
{
Q_OBJECT
public:
MainWidget(QWidget *parent=0,const char *name=0);
MainWidget(QWidget *parent=0);
QSizePolicy sizePolicy() const;
private slots:

View File

@@ -2,9 +2,7 @@
#
# The QMake project file for RDMonitor.
#
# (C) Copyright 2012 Fred Gleason <fredg@paravelsystems.com>
#
# $Id: rdmonitor.pro,v 1.1.2.2 2013/01/01 21:36:32 cvs Exp $
# (C) Copyright 2012,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 @@
//
// Custom ToolTip for RDMonitor's Status Bubble
//
// (C) Copyright 2012 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: status_tip.cpp,v 1.1.2.2 2012/10/22 23:09:39 cvs Exp $
// (C) Copyright 2012,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 @@
//
// Custom ToolTip for RDMonitor's Status Bubble
//
// (C) Copyright 2012 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: status_tip.h,v 1.1.2.2 2012/10/22 23:09:39 cvs Exp $
// (C) Copyright 2012,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