missing copyrights and indents. no real changes
This commit is contained in:
parent
25b6811a18
commit
00605f4a3c
@ -39,8 +39,7 @@ class AdvSearch : public QDialog, public Ui::AdvSearchBase
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
AdvSearch(QDialog* parent = 0)
|
AdvSearch(QDialog* parent = 0)
|
||||||
: QDialog(parent)
|
: QDialog(parent) {
|
||||||
{
|
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
init();
|
init();
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
/*
|
/* Copyright (C) 2005-2020 J.F.Dockes
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
@ -23,12 +23,9 @@ class QPushButton;
|
|||||||
|
|
||||||
class CronToolW : public QDialog, public Ui::CronToolW {
|
class CronToolW : public QDialog, public Ui::CronToolW {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
CronToolW(QWidget * parent = 0)
|
CronToolW(QWidget * parent = 0)
|
||||||
: QDialog(parent),
|
: QDialog(parent), enableButton(0), disableButton(0) {
|
||||||
enableButton(0),
|
|
||||||
disableButton(0)
|
|
||||||
{
|
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
init();
|
init();
|
||||||
}
|
}
|
||||||
@ -41,7 +38,6 @@ private slots:
|
|||||||
private:
|
private:
|
||||||
void init();
|
void init();
|
||||||
void changeCron(bool enable);
|
void changeCron(bool enable);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
/*
|
/* Copyright (C) 2005-2020 J.F.Dockes
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
@ -21,10 +21,9 @@
|
|||||||
|
|
||||||
class FirstIdxDialog : public QDialog, public Ui::FirstIdxDialog {
|
class FirstIdxDialog : public QDialog, public Ui::FirstIdxDialog {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
FirstIdxDialog(QWidget * parent = 0)
|
FirstIdxDialog(QWidget * parent = 0)
|
||||||
: QDialog(parent)
|
: QDialog(parent) {
|
||||||
{
|
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
@ -62,7 +62,6 @@ private:
|
|||||||
std::string m_fn;
|
std::string m_fn;
|
||||||
time_t m_reftime;
|
time_t m_reftime;
|
||||||
bool m_ok;
|
bool m_ok;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
#endif /* _FRAGBUTS_H_INCLUDED_ */
|
#endif /* _FRAGBUTS_H_INCLUDED_ */
|
||||||
|
|||||||
@ -37,7 +37,7 @@ using std::vector;
|
|||||||
|
|
||||||
/** Holder for preferences (gets saved to user Qt prefs) */
|
/** Holder for preferences (gets saved to user Qt prefs) */
|
||||||
class PrefsPack {
|
class PrefsPack {
|
||||||
public:
|
public:
|
||||||
// Simple search entry behaviour
|
// Simple search entry behaviour
|
||||||
bool ssearchNoComplete;
|
bool ssearchNoComplete;
|
||||||
bool ssearchStartOnComplete;
|
bool ssearchStartOnComplete;
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
/*
|
/* Copyright (C) 2005-2020 J.F.Dockes
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
@ -22,10 +22,9 @@
|
|||||||
|
|
||||||
class IdxSchedW : public QDialog, public Ui::IdxSchedW {
|
class IdxSchedW : public QDialog, public Ui::IdxSchedW {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
IdxSchedW(QWidget * parent = 0)
|
IdxSchedW(QWidget * parent = 0)
|
||||||
: QDialog(parent)
|
: QDialog(parent) {
|
||||||
{
|
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
(void)new HelpClient(this);
|
(void)new HelpClient(this);
|
||||||
HelpClient::installMap((const char *)this->objectName().toUtf8(),
|
HelpClient::installMap((const char *)this->objectName().toUtf8(),
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
/*
|
/* Copyright (C) 2005-2020 J.F.Dockes
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
|||||||
@ -32,8 +32,7 @@ class EditTrans : public QDialog, public Ui::EditTransBase
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
EditTrans(const std::string& dbdir, QWidget* parent = 0)
|
EditTrans(const std::string& dbdir, QWidget* parent = 0)
|
||||||
: QDialog(parent)
|
: QDialog(parent) {
|
||||||
{
|
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
init(dbdir);
|
init(dbdir);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
/*
|
/* Copyright (C) 2005-2020 J.F.Dockes
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
/*
|
/* Copyright (C) 2005-2020 J.F.Dockes
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
/*
|
/* Copyright (C) 2005-2020 J.F.Dockes
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
@ -23,10 +23,9 @@ class QPushButton;
|
|||||||
|
|
||||||
class RTIToolW : public QDialog, public Ui::RTIToolW {
|
class RTIToolW : public QDialog, public Ui::RTIToolW {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
RTIToolW(QWidget * parent = 0)
|
RTIToolW(QWidget * parent = 0)
|
||||||
: QDialog(parent)
|
: QDialog(parent) {
|
||||||
{
|
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
init();
|
init();
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
/*
|
/* Copyright (C) 2005-2020 J.F.Dockes
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
/*
|
/* Copyright (C) 2005-2020 J.F.Dockes
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
@ -30,8 +30,7 @@ class SpecIdxW : public QDialog, public Ui::SpecIdxW {
|
|||||||
public:
|
public:
|
||||||
|
|
||||||
SpecIdxW(QWidget * parent = 0)
|
SpecIdxW(QWidget * parent = 0)
|
||||||
: QDialog(parent)
|
: QDialog(parent) {
|
||||||
{
|
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
selPatsLE->setEnabled(false);
|
selPatsLE->setEnabled(false);
|
||||||
connect(browsePB, SIGNAL(clicked()), this, SLOT(onBrowsePB_clicked()));
|
connect(browsePB, SIGNAL(clicked()), this, SLOT(onBrowsePB_clicked()));
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
/*
|
/* Copyright (C) 2005-2020 J.F.Dockes
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
/*
|
/* Copyright (C) 2005-2020 J.F.Dockes
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
@ -25,7 +25,7 @@ class RclMain;
|
|||||||
class RclTrayIcon : public QSystemTrayIcon {
|
class RclTrayIcon : public QSystemTrayIcon {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
RclTrayIcon(RclMain *mainw, const QIcon& icon, QObject* parent = 0)
|
RclTrayIcon(RclMain *mainw, const QIcon& icon, QObject* parent = 0)
|
||||||
: QSystemTrayIcon(icon, parent), m_mainw(mainw) {
|
: QSystemTrayIcon(icon, parent), m_mainw(mainw) {
|
||||||
|
|||||||
@ -31,8 +31,7 @@ class UIPrefsDialog : public QDialog, public Ui::uiPrefsDialogBase
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
UIPrefsDialog(RclMain* parent)
|
UIPrefsDialog(RclMain* parent)
|
||||||
: QDialog((QWidget*)parent), m_mainWindow(parent)
|
: QDialog((QWidget*)parent), m_mainWindow(parent) {
|
||||||
{
|
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
init();
|
init();
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user