missing copyrights and indents. no real changes

This commit is contained in:
Jean-Francois Dockes 2021-01-14 10:26:20 +01:00
parent 25b6811a18
commit 00605f4a3c
20 changed files with 65 additions and 77 deletions

View File

@ -39,8 +39,7 @@ class AdvSearch : public QDialog, public Ui::AdvSearchBase
public:
AdvSearch(QDialog* parent = 0)
: QDialog(parent)
{
: QDialog(parent) {
setupUi(this);
init();
}

View File

@ -1,4 +1,4 @@
/* Copyright (C) 2005 J.F.Dockes
/* Copyright (C) 2005-2020 J.F.Dockes
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or

View File

@ -1,4 +1,4 @@
/*
/* Copyright (C) 2005-2020 J.F.Dockes
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
@ -25,10 +25,7 @@ class CronToolW : public QDialog, public Ui::CronToolW {
Q_OBJECT
public:
CronToolW(QWidget * parent = 0)
: QDialog(parent),
enableButton(0),
disableButton(0)
{
: QDialog(parent), enableButton(0), disableButton(0) {
setupUi(this);
init();
}
@ -41,7 +38,6 @@ private slots:
private:
void init();
void changeCron(bool enable);
};

View File

@ -1,4 +1,4 @@
/*
/* Copyright (C) 2005-2020 J.F.Dockes
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
@ -23,8 +23,7 @@ class FirstIdxDialog : public QDialog, public Ui::FirstIdxDialog {
Q_OBJECT
public:
FirstIdxDialog(QWidget * parent = 0)
: QDialog(parent)
{
: QDialog(parent) {
setupUi(this);
}
};

View File

@ -64,5 +64,4 @@ private:
bool m_ok;
};
#endif /* _FRAGBUTS_H_INCLUDED_ */

View File

@ -1,4 +1,4 @@
/*
/* Copyright (C) 2005-2020 J.F.Dockes
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
@ -24,8 +24,7 @@ class IdxSchedW : public QDialog, public Ui::IdxSchedW {
Q_OBJECT
public:
IdxSchedW(QWidget * parent = 0)
: QDialog(parent)
{
: QDialog(parent) {
setupUi(this);
(void)new HelpClient(this);
HelpClient::installMap((const char *)this->objectName().toUtf8(),

View File

@ -1,4 +1,4 @@
/*
/* Copyright (C) 2005-2020 J.F.Dockes
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or

View File

@ -32,8 +32,7 @@ class EditTrans : public QDialog, public Ui::EditTransBase
public:
EditTrans(const std::string& dbdir, QWidget* parent = 0)
: QDialog(parent)
{
: QDialog(parent) {
setupUi(this);
init(dbdir);
}

View File

@ -1,4 +1,4 @@
/*
/* Copyright (C) 2005-2020 J.F.Dockes
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or

View File

@ -1,4 +1,4 @@
/*
/* Copyright (C) 2005-2020 J.F.Dockes
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or

View File

@ -1,4 +1,4 @@
/*
/* Copyright (C) 2005-2020 J.F.Dockes
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
@ -25,8 +25,7 @@ class RTIToolW : public QDialog, public Ui::RTIToolW {
Q_OBJECT
public:
RTIToolW(QWidget * parent = 0)
: QDialog(parent)
{
: QDialog(parent) {
setupUi(this);
init();
}

View File

@ -1,4 +1,4 @@
/*
/* Copyright (C) 2005-2020 J.F.Dockes
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or

View File

@ -1,4 +1,4 @@
/*
/* Copyright (C) 2005-2020 J.F.Dockes
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
@ -30,8 +30,7 @@ class SpecIdxW : public QDialog, public Ui::SpecIdxW {
public:
SpecIdxW(QWidget * parent = 0)
: QDialog(parent)
{
: QDialog(parent) {
setupUi(this);
selPatsLE->setEnabled(false);
connect(browsePB, SIGNAL(clicked()), this, SLOT(onBrowsePB_clicked()));

View File

@ -1,4 +1,4 @@
/*
/* Copyright (C) 2005-2020 J.F.Dockes
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or

View File

@ -1,4 +1,4 @@
/*
/* Copyright (C) 2005-2020 J.F.Dockes
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or

View File

@ -31,8 +31,7 @@ class UIPrefsDialog : public QDialog, public Ui::uiPrefsDialogBase
public:
UIPrefsDialog(RclMain* parent)
: QDialog((QWidget*)parent), m_mainWindow(parent)
{
: QDialog((QWidget*)parent), m_mainWindow(parent) {
setupUi(this);
init();
}