summaryrefslogtreecommitdiff
path: root/plugins/PluginLoader/catchcopy-v0002/OptionsWidget.cpp
diff options
context:
space:
mode:
authorThomas Preud'homme <robotux@celest.fr>2017-11-24 23:24:09 +0000
committerThomas Preud'homme <robotux@celest.fr>2017-11-24 23:24:09 +0000
commitb3c8bdcc0d1e4b2ab298847a7902b6d60410a5bc (patch)
tree8fce8a51adfb245db8ab2a76831661780c0c713e /plugins/PluginLoader/catchcopy-v0002/OptionsWidget.cpp
parente297dbd8052ef4e66f069e2dd1865ae7fa8af28e (diff)
New upstream version 1.2.3.6
Diffstat (limited to 'plugins/PluginLoader/catchcopy-v0002/OptionsWidget.cpp')
-rw-r--r--[-rwxr-xr-x]plugins/PluginLoader/catchcopy-v0002/OptionsWidget.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/PluginLoader/catchcopy-v0002/OptionsWidget.cpp b/plugins/PluginLoader/catchcopy-v0002/OptionsWidget.cpp
index 4d616e4..563e855 100755..100644
--- a/plugins/PluginLoader/catchcopy-v0002/OptionsWidget.cpp
+++ b/plugins/PluginLoader/catchcopy-v0002/OptionsWidget.cpp
@@ -3,37 +3,37 @@
OptionsWidget::OptionsWidget(QWidget *parent) :
QWidget(parent),
- ui(new Ui::OptionsWidget)
+ ui(new Ui::OptionsWidget)
{
- ui->setupUi(this);
+ ui->setupUi(this);
}
OptionsWidget::~OptionsWidget()
{
- delete ui;
+ //delete ui;//attached to the main program, then it's the main program responsive the delete
}
void OptionsWidget::setAllDllIsImportant(bool allDllIsImportant)
{
- ui->allDllIsImportant->setChecked(allDllIsImportant);
+ ui->allDllIsImportant->setChecked(allDllIsImportant);
}
void OptionsWidget::setDebug(bool Debug)
{
- ui->Debug->setChecked(Debug);
+ ui->Debug->setChecked(Debug);
}
void OptionsWidget::on_allDllIsImportant_toggled(bool checked)
{
- emit sendAllDllIsImportant(ui->allDllIsImportant->isChecked());
+ emit sendAllDllIsImportant(checked);
}
void OptionsWidget::retranslate()
{
- ui->retranslateUi(this);
+ ui->retranslateUi(this);
}
void OptionsWidget::on_Debug_toggled(bool checked)
{
- emit sendDebug(ui->Debug->isChecked());
+ emit sendDebug(checked);
}