Skip to content

Commit

Permalink
Normalize signals and slots as found by Krazy2
Browse files Browse the repository at this point in the history
  • Loading branch information
netterfield committed Jan 8, 2014
1 parent f97ffcc commit de29288
Show file tree
Hide file tree
Showing 43 changed files with 137 additions and 137 deletions.
8 changes: 4 additions & 4 deletions src/libkst/datasource.cpp
Expand Up @@ -183,8 +183,8 @@ QMap<QString, QString> DataSource::fileMetas() const

void DataSource::resetFileWatcher() {
if (_watcher) {
disconnect(_watcher, SIGNAL(fileChanged ( const QString & )), this, SLOT(checkUpdate()));
disconnect(_watcher, SIGNAL(directoryChanged ( const QString & )), this, SLOT(checkUpdate()));
disconnect(_watcher, SIGNAL(fileChanged(QString)), this, SLOT(checkUpdate()));
disconnect(_watcher, SIGNAL(directoryChanged(QString)), this, SLOT(checkUpdate()));
delete _watcher;
_watcher = 0L;
}
Expand Down Expand Up @@ -231,8 +231,8 @@ void DataSource::setUpdateType(UpdateCheckType updateType, const QString& file)
_watcher = new QFileSystemWatcher();
const QString usedfile = (file.isEmpty() ? _filename : file);
_watcher->addPath(usedfile);
connect(_watcher, SIGNAL(fileChanged ( const QString & )), this, SLOT(checkUpdate()));
connect(_watcher, SIGNAL(directoryChanged ( const QString & )), this, SLOT(checkUpdate()));
connect(_watcher, SIGNAL(fileChanged(QString)), this, SLOT(checkUpdate()));
connect(_watcher, SIGNAL(directoryChanged(QString)), this, SLOT(checkUpdate()));
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/libkstapp/aboutdialog.cpp
Expand Up @@ -75,7 +75,7 @@ AboutDialog::AboutDialog(QWidget *parent)
<< QString("</ul>");

text->setText(msg.join("\n"));
connect(text, SIGNAL(anchorClicked(const QUrl &)), this, SLOT(launchURL(const QUrl&)));
connect(text, SIGNAL(anchorClicked(QUrl)), this, SLOT(launchURL(QUrl)));
}


Expand Down
4 changes: 2 additions & 2 deletions src/libkstapp/axistab.cpp
Expand Up @@ -62,8 +62,8 @@ AxisTab::AxisTab(QWidget *parent)
connect(_axisMajorTickSpacing, SIGNAL(currentIndexChanged(int)), this, SIGNAL(modified()));
connect(_axisMajorLineStyle, SIGNAL(currentIndexChanged(int)), this, SIGNAL(modified()));
connect(_axisMinorLineStyle, SIGNAL(currentIndexChanged(int)), this, SIGNAL(modified()));
connect(_axisMajorLineColor, SIGNAL(changed(const QColor &)), this, SIGNAL(modified()));
connect(_axisMinorLineColor, SIGNAL(changed(const QColor &)), this, SIGNAL(modified()));
connect(_axisMajorLineColor, SIGNAL(changed(QColor)), this, SIGNAL(modified()));
connect(_axisMinorLineColor, SIGNAL(changed(QColor)), this, SIGNAL(modified()));
connect(_axisMajorLineWidth, SIGNAL(valueChanged(double)), this, SIGNAL(modified()));
connect(_axisMinorLineWidth, SIGNAL(valueChanged(double)), this, SIGNAL(modified()));
connect(_autoMinorTicks, SIGNAL(stateChanged(int)), this, SIGNAL(modified()));
Expand Down
4 changes: 2 additions & 2 deletions src/libkstapp/baddatasourcedialog.cpp
Expand Up @@ -26,7 +26,7 @@ BadDatasourceDialog::BadDatasourceDialog(QString *filename, ObjectStore *store,
: QDialog(parent), _store(store), _dataSource(0), _requestID(0), _fileName(filename) {
setupUi(this);

connect(_url, SIGNAL(changed(const QString&)), this, SLOT(fileNameChanged(const QString&)));
connect(_url, SIGNAL(changed(QString)), this, SLOT(fileNameChanged(QString)));
connect(_configureSource, SIGNAL(clicked()), this, SLOT(showConfigWidget()));
connect(_skip, SIGNAL(clicked()), this, SLOT(skip()));
connect(_change, SIGNAL(clicked()), this, SLOT(change()));
Expand Down Expand Up @@ -58,7 +58,7 @@ void BadDatasourceDialog::fileNameChanged(const QString &file) {

_requestID += 1;
ValidateDataSourceThread *validateDSThread = new ValidateDataSourceThread(file, _requestID);
connect(validateDSThread, SIGNAL(dataSourceValid(QString, int)), this, SLOT(sourceValid(QString, int)));
connect(validateDSThread, SIGNAL(dataSourceValid(QString,int)), this, SLOT(sourceValid(QString,int)));
QThreadPool::globalInstance()->start(validateDSThread);
}

Expand Down
4 changes: 2 additions & 2 deletions src/libkstapp/changedatasampledialog.cpp
Expand Up @@ -44,8 +44,8 @@ ChangeDataSampleDialog::ChangeDataSampleDialog(QWidget *parent)
connect(_removeAll, SIGNAL(clicked()), this, SLOT(removeAll()));
connect(_addAll, SIGNAL(clicked()), this, SLOT(addAll()));

connect(_vectorList, SIGNAL(itemDoubleClicked ( QListWidgetItem * )), this, SLOT(availableDoubleClicked(QListWidgetItem *)));
connect(_selectedVectorList, SIGNAL(itemDoubleClicked ( QListWidgetItem * )), this, SLOT(selectedDoubleClicked(QListWidgetItem *)));
connect(_vectorList, SIGNAL(itemDoubleClicked (QListWidgetItem*)), this, SLOT(availableDoubleClicked(QListWidgetItem*)));
connect(_selectedVectorList, SIGNAL(itemDoubleClicked (QListWidgetItem*)), this, SLOT(selectedDoubleClicked(QListWidgetItem*)));

connect(_vectorList, SIGNAL(itemSelectionChanged()), this, SLOT(updateButtons()));
connect(_selectedVectorList, SIGNAL(itemSelectionChanged()), this, SLOT(updateButtons()));
Expand Down
8 changes: 4 additions & 4 deletions src/libkstapp/changefiledialog.cpp
Expand Up @@ -56,16 +56,16 @@ ChangeFileDialog::ChangeFileDialog(QWidget *parent)
connect(_removeAll, SIGNAL(clicked()), this, SLOT(removeAll()));
connect(_addAll, SIGNAL(clicked()), this, SLOT(addAll()));

connect(_changeFilePrimitiveList, SIGNAL(itemDoubleClicked ( QListWidgetItem * )), this, SLOT(availableDoubleClicked(QListWidgetItem *)));
connect(_selectedFilePrimitiveList, SIGNAL(itemDoubleClicked ( QListWidgetItem * )), this, SLOT(selectedDoubleClicked(QListWidgetItem *)));
connect(_changeFilePrimitiveList, SIGNAL(itemDoubleClicked (QListWidgetItem*)), this, SLOT(availableDoubleClicked(QListWidgetItem*)));
connect(_selectedFilePrimitiveList, SIGNAL(itemDoubleClicked (QListWidgetItem*)), this, SLOT(selectedDoubleClicked(QListWidgetItem*)));

connect(_allFromFile, SIGNAL(clicked()), this, SLOT(selectAllFromFile()));

connect(_changeFilePrimitiveList, SIGNAL(itemSelectionChanged()), this, SLOT(updateButtons()));
connect(_selectedFilePrimitiveList, SIGNAL(itemSelectionChanged()), this, SLOT(updateButtons()));

connect(_duplicateSelected, SIGNAL(toggled(bool)), _duplicateDependents, SLOT(setEnabled(bool)));
connect(_dataFile, SIGNAL(changed(const QString &)), this, SLOT(fileNameChanged(const QString &)));
connect(_dataFile, SIGNAL(changed(QString)), this, SLOT(fileNameChanged(QString)));
connect(_dataFile, SIGNAL(destroyed()), kstApp->mainWindow(), SLOT(cleanUpDataSourceList()));

connect(_buttonBox->button(QDialogButtonBox::Cancel), SIGNAL(clicked()), this, SLOT(reject()));
Expand Down Expand Up @@ -303,7 +303,7 @@ void ChangeFileDialog::apply() {
return;
}
// Hook the new datasource to the status message area to receive progress status
connect(_dataSource, SIGNAL(progress(int, QString)), kstApp->mainWindow(), SLOT(updateProgress(int, QString)));
connect(_dataSource, SIGNAL(progress(int,QString)), kstApp->mainWindow(), SLOT(updateProgress(int,QString)));

// we need a list which preservs the order things are added, and a map to associate the duplicated
// primitive with its duplicate.
Expand Down
4 changes: 2 additions & 2 deletions src/libkstapp/contenttab.cpp
Expand Up @@ -51,8 +51,8 @@ ContentTab::ContentTab(QWidget *parent, ObjectStore *store)
connect(_up, SIGNAL(clicked()), this, SIGNAL(modified()));
connect(_down, SIGNAL(clicked()), this, SIGNAL(modified()));

connect(_availableRelationList, SIGNAL(itemDoubleClicked ( QListWidgetItem * )), this, SLOT(availableDoubleClicked(QListWidgetItem *)));
connect(_displayedRelationList, SIGNAL(itemDoubleClicked ( QListWidgetItem * )), this, SLOT(displayedDoubleClicked(QListWidgetItem *)));
connect(_availableRelationList, SIGNAL(itemDoubleClicked (QListWidgetItem*)), this, SLOT(availableDoubleClicked(QListWidgetItem*)));
connect(_displayedRelationList, SIGNAL(itemDoubleClicked (QListWidgetItem*)), this, SLOT(displayedDoubleClicked(QListWidgetItem*)));

connect(_availableRelationList, SIGNAL(itemSelectionChanged()), this, SLOT(updateButtons()));
connect(_displayedRelationList, SIGNAL(itemSelectionChanged()), this, SLOT(updateButtons()));
Expand Down
6 changes: 3 additions & 3 deletions src/libkstapp/datamanager.cpp
Expand Up @@ -76,9 +76,9 @@ DataManager::DataManager(QWidget *parent, Document *doc)
_session->setSortingEnabled(true);
_session->sortByColumn(1); // Sort by type by default
_session->setUniformRowHeights(true);
connect(_session, SIGNAL(customContextMenuRequested(const QPoint &)),
this, SLOT(showContextMenu(const QPoint &)));
connect(_session, SIGNAL(doubleClicked(const QModelIndex &)),
connect(_session, SIGNAL(customContextMenuRequested(QPoint)),
this, SLOT(showContextMenu(QPoint)));
connect(_session, SIGNAL(doubleClicked(QModelIndex)),
this, SLOT(showEditDialog(QModelIndex)));

// Simple keyboard shortcut for fast object deletion
Expand Down
4 changes: 2 additions & 2 deletions src/libkstapp/datasourcedialog.cpp
Expand Up @@ -42,8 +42,8 @@ DataSourceDialog::DataSourceDialog(DataDialog::EditMode mode, DataSourcePtr data
_buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
layout->addWidget(_buttonBox);

connect(_buttonBox, SIGNAL(clicked(QAbstractButton *)),
this, SLOT(buttonClicked(QAbstractButton *)));
connect(_buttonBox, SIGNAL(clicked(QAbstractButton*)),
this, SLOT(buttonClicked(QAbstractButton*)));

setLayout(layout);

Expand Down
2 changes: 1 addition & 1 deletion src/libkstapp/datasourcepluginfactory.cpp
Expand Up @@ -79,7 +79,7 @@ DataSourcePtr DataSourcePluginFactory::generateDataSource(ObjectStore *store, QX
dataSource = 0L;
dataSource = DataSourcePluginManager::loadSource(store, fileName, fileType);
if (dataSource) {
QObject::connect(dataSource, SIGNAL(progress(int, QString)), kstApp->mainWindow(), SLOT(updateProgress(int, QString)));
QObject::connect(dataSource, SIGNAL(progress(int,QString)), kstApp->mainWindow(), SLOT(updateProgress(int,QString)));
dataSource->parseProperties(propertyAttributes);
if (fileName != alternate_filename) {
dataSource->setAlternateFilename(alternate_filename);
Expand Down
10 changes: 5 additions & 5 deletions src/libkstapp/datawizard.cpp
Expand Up @@ -51,7 +51,7 @@ DataWizardPageDataSource::DataWizardPageDataSource(ObjectStore *store, QWidget *

MainWindow::setWidgetFlags(this);

connect(_url, SIGNAL(changed(const QString&)), this, SLOT(sourceChanged(const QString&)));
connect(_url, SIGNAL(changed(QString)), this, SLOT(sourceChanged(QString)));
connect(_configureSource, SIGNAL(clicked()), this, SLOT(configureSource()));

if (default_source.isEmpty()) {
Expand Down Expand Up @@ -136,7 +136,7 @@ void DataWizardPageDataSource::sourceValid(QString filename, int requestID) {
_pageValid = true;

_dataSource = DataSourcePluginManager::findOrLoadSource(_store, filename);
connect(_dataSource, SIGNAL(progress(int, QString)), kstApp->mainWindow(), SLOT(updateProgress(int, QString)));
connect(_dataSource, SIGNAL(progress(int,QString)), kstApp->mainWindow(), SLOT(updateProgress(int,QString)));
_fileType->setText(_dataSource->fileType());

_dataSource->readLock();
Expand Down Expand Up @@ -164,7 +164,7 @@ void DataWizardPageDataSource::sourceChanged(const QString& file) {

_requestID += 1;
ValidateDataSourceThread *validateDSThread = new ValidateDataSourceThread(file, _requestID);
connect(validateDSThread, SIGNAL(dataSourceValid(QString, int)), this, SLOT(sourceValid(QString, int)));
connect(validateDSThread, SIGNAL(dataSourceValid(QString,int)), this, SLOT(sourceValid(QString,int)));
QThreadPool::globalInstance()->start(validateDSThread);
}

Expand Down Expand Up @@ -193,7 +193,7 @@ DataWizardPageVectors::DataWizardPageVectors(QWidget *parent)
connect(_down, SIGNAL(clicked()), this, SLOT(down()));
connect(_vectors, SIGNAL(itemDoubleClicked(QListWidgetItem*)), this, SLOT(add()));
connect(_vectorsToPlot, SIGNAL(itemDoubleClicked(QListWidgetItem*)), this, SLOT(remove()));
connect(_vectorReduction, SIGNAL(textChanged(const QString&)), this, SLOT(filterVectors(const QString&)));
connect(_vectorReduction, SIGNAL(textChanged(QString)), this, SLOT(filterVectors(QString)));
connect(_vectorSearch, SIGNAL(clicked()), this, SLOT(searchVectors()));

_vectors->setSortingEnabled(false);
Expand Down Expand Up @@ -721,7 +721,7 @@ DataWizard::DataWizard(QWidget *parent, const QString& fileToOpen)
Q_ASSERT(_document);

_pageDataSource = new DataWizardPageDataSource(_document->objectStore(), this, fileToOpen);
connect(_pageDataSource, SIGNAL(progress(int, QString)), mw, SLOT(updateProgress(int, QString)));
connect(_pageDataSource, SIGNAL(progress(int,QString)), mw, SLOT(updateProgress(int,QString)));
_pageVectors = new DataWizardPageVectors(this);
_pageDataPresentation = new DataWizardPageDataPresentation(_document->objectStore(), this);
_pageFilters = new DataWizardPageFilters(this);
Expand Down
8 changes: 4 additions & 4 deletions src/libkstapp/dialog.cpp
Expand Up @@ -30,11 +30,11 @@ Dialog::Dialog(QWidget *parent)

extensionWidget()->hide();

connect(_listWidget, SIGNAL(itemClicked(QListWidgetItem *)),
this, SLOT(selectPageForItem(QListWidgetItem *)));
connect(_listWidget, SIGNAL(itemClicked(QListWidgetItem*)),
this, SLOT(selectPageForItem(QListWidgetItem*)));

connect(_buttonBox, SIGNAL(clicked(QAbstractButton *)),
this, SLOT(buttonClicked(QAbstractButton *)));
connect(_buttonBox, SIGNAL(clicked(QAbstractButton*)),
this, SLOT(buttonClicked(QAbstractButton*)));

setAttribute(Qt::WA_DeleteOnClose);

Expand Down
2 changes: 1 addition & 1 deletion src/libkstapp/editmultiplewidget.cpp
Expand Up @@ -25,7 +25,7 @@ EditMultipleWidget::EditMultipleWidget(QWidget *parent)

connect(_selectNoneBut, SIGNAL(clicked()), _objectList, SLOT(clearSelection()));

connect(_filterEdit, SIGNAL(textChanged(const QString&)), this, SLOT(applyFilter(const QString&)));
connect(_filterEdit, SIGNAL(textChanged(QString)), this, SLOT(applyFilter(QString)));
textLabel1->setProperty("si","Filter:");
_selectNoneBut->setProperty("si","Clear");
_selectAllBut->setProperty("si","Select &All");
Expand Down
4 changes: 2 additions & 2 deletions src/libkstapp/equationdialog.cpp
Expand Up @@ -45,12 +45,12 @@ EquationTab::EquationTab(QWidget *parent)
TextLabel1_11->setBuddy(_equation);
_xVectorLabel->setBuddy(_xVectors->_vector);
connect(_xVectors, SIGNAL(selectionChanged(QString)), this, SLOT(selectionChanged()));
connect(_equation, SIGNAL(textChanged(const QString &)), this, SLOT(selectionChanged()));
connect(_equation, SIGNAL(textChanged(QString)), this, SLOT(selectionChanged()));

//connect(_xVectors, SIGNAL(contentChanged()), this, SLOT(updateVectorCombos()));

connect(_xVectors, SIGNAL(selectionChanged(QString)), this, SIGNAL(modified()));
connect(_equation, SIGNAL(textChanged(const QString &)), this, SIGNAL(modified()));
connect(_equation, SIGNAL(textChanged(QString)), this, SIGNAL(modified()));
connect(_doInterpolation, SIGNAL(clicked()), this, SIGNAL(modified()));
connect(_curvePlacement->_noPlot, SIGNAL(toggled(bool)), _curveAppearance, SLOT(setDisabled(bool)));
connect(UpdateServer::self(), SIGNAL(objectListsChanged()), this->_equation, SLOT(fillKstObjects()));
Expand Down
26 changes: 13 additions & 13 deletions src/libkstapp/eventmonitordialog.cpp
Expand Up @@ -30,19 +30,19 @@ EventMonitorTab::EventMonitorTab(QWidget *parent)
setupUi(this);
setTabTitle(tr("Event Monitor"));

connect(_equation, SIGNAL(textChanged(const QString &)), this, SLOT(selectionChanged()));
connect(_equationOperator, SIGNAL(currentIndexChanged(QString)), this, SLOT(equationOperatorUpdate(const QString&)));
connect(_vectorSelector, SIGNAL(selectionChanged(QString)), this, SLOT(equationUpdate(const QString&)));
connect(_scalarSelector, SIGNAL(selectionChanged(QString)), this, SLOT(equationUpdate(const QString&)));

connect(_debugLog, SIGNAL(toggled(const bool&)), this, SIGNAL(modified()));
connect(_emailNotify, SIGNAL(toggled(const bool&)), this, SIGNAL(modified()));
connect(_ELOGNotify, SIGNAL(toggled(const bool&)), this, SIGNAL(modified()));
connect(_executeScript, SIGNAL(toggled(const bool&)), this, SIGNAL(modified()));

connect(_equation, SIGNAL(textChanged(const QString&)), this, SIGNAL(modified()));
connect(_description, SIGNAL(textChanged(const QString&)), this, SIGNAL(modified()));
connect(_emailRecipients, SIGNAL(textChanged(const QString&)), this, SIGNAL(modified()));
connect(_equation, SIGNAL(textChanged(QString)), this, SLOT(selectionChanged()));
connect(_equationOperator, SIGNAL(currentIndexChanged(QString)), this, SLOT(equationOperatorUpdate(QString)));
connect(_vectorSelector, SIGNAL(selectionChanged(QString)), this, SLOT(equationUpdate(QString)));
connect(_scalarSelector, SIGNAL(selectionChanged(QString)), this, SLOT(equationUpdate(QString)));

connect(_debugLog, SIGNAL(toggled(bool)), this, SIGNAL(modified()));
connect(_emailNotify, SIGNAL(toggled(bool)), this, SIGNAL(modified()));
connect(_ELOGNotify, SIGNAL(toggled(bool)), this, SIGNAL(modified()));
connect(_executeScript, SIGNAL(toggled(bool)), this, SIGNAL(modified()));

connect(_equation, SIGNAL(textChanged(QString)), this, SIGNAL(modified()));
connect(_description, SIGNAL(textChanged(QString)), this, SIGNAL(modified()));
connect(_emailRecipients, SIGNAL(textChanged(QString)), this, SIGNAL(modified()));
connect(_script, SIGNAL(textChanged()), this, SIGNAL(modified()));

connect(_debugLogNotice, SIGNAL(clicked()), this, SIGNAL(modified()));
Expand Down
4 changes: 2 additions & 2 deletions src/libkstapp/exportvectorsdialog.cpp
Expand Up @@ -45,8 +45,8 @@ ExportVectorsDialog::ExportVectorsDialog(QWidget *parent) :
connect(_removeAll, SIGNAL(clicked()), this, SLOT(removeAll()));
connect(_addAll, SIGNAL(clicked()), this, SLOT(addAll()));

connect(_changeVectorList, SIGNAL(itemDoubleClicked ( QListWidgetItem * )), this, SLOT(availableDoubleClicked(QListWidgetItem *)));
connect(_selectedVectorList, SIGNAL(itemDoubleClicked ( QListWidgetItem * )), this, SLOT(selectedDoubleClicked(QListWidgetItem *)));
connect(_changeVectorList, SIGNAL(itemDoubleClicked (QListWidgetItem*)), this, SLOT(availableDoubleClicked(QListWidgetItem*)));
connect(_selectedVectorList, SIGNAL(itemDoubleClicked (QListWidgetItem*)), this, SLOT(selectedDoubleClicked(QListWidgetItem*)));

connect(_changeVectorList, SIGNAL(itemSelectionChanged()), this, SLOT(updateButtons()));
connect(_selectedVectorList, SIGNAL(itemSelectionChanged()), this, SLOT(updateButtons()));
Expand Down
4 changes: 2 additions & 2 deletions src/libkstapp/filltab.cpp
Expand Up @@ -39,9 +39,9 @@ FillTab::FillTab(QWidget *parent)
_style->addItem("FDiagPattern", (int)Qt::FDiagPattern);
_style->addItem("DiagCrossPattern", (int)Qt::DiagCrossPattern);

connect(_color, SIGNAL(changed(const QColor &)), this, SIGNAL(modified()));
connect(_color, SIGNAL(changed(QColor)), this, SIGNAL(modified()));
connect(_style, SIGNAL(currentIndexChanged(int)), this, SIGNAL(modified()));
connect(_gradientEditor, SIGNAL(changed(const QGradient &)), this, SIGNAL(modified()));
connect(_gradientEditor, SIGNAL(changed(QGradient)), this, SIGNAL(modified()));
connect(_gradientReset, SIGNAL(pressed()), this, SIGNAL(modified()));
connect(_useGradient, SIGNAL(stateChanged(int)), this, SIGNAL(modified()));
connect(_gradientReset, SIGNAL(pressed()), _gradientEditor, SLOT(resetGradient()));
Expand Down
2 changes: 1 addition & 1 deletion src/libkstapp/filterfitdialog.cpp
Expand Up @@ -45,7 +45,7 @@ FilterFitTab::FilterFitTab(QString& pluginName, QWidget *parent)
_curvePlacement->setPlace(CurvePlacement::NoPlot);

pluginChanged(pluginName);
connect(_pluginCombo, SIGNAL(currentIndexChanged(const QString&)), this, SLOT(pluginChanged(const QString&)));
connect(_pluginCombo, SIGNAL(currentIndexChanged(QString)), this, SLOT(pluginChanged(QString)));
connect(_curvePlacement->_noPlot, SIGNAL(toggled(bool)), _curveAppearance, SLOT(setDisabled(bool)));
}

Expand Down
4 changes: 2 additions & 2 deletions src/libkstapp/histogramdialog.cpp
Expand Up @@ -44,8 +44,8 @@ HistogramTab::HistogramTab(QWidget *parent)
connect(_vector, SIGNAL(selectionChanged(QString)), this, SLOT(selectionChanged()));

connect(_vector, SIGNAL(selectionChanged(QString)), this, SIGNAL(modified()));
connect(_min, SIGNAL(textChanged(const QString &)), this, SIGNAL(modified()));
connect(_max, SIGNAL(textChanged(const QString &)), this, SIGNAL(modified()));
connect(_min, SIGNAL(textChanged(QString)), this, SIGNAL(modified()));
connect(_max, SIGNAL(textChanged(QString)), this, SIGNAL(modified()));
connect(_numberOfBins, SIGNAL(valueChanged(int)), this, SIGNAL(modified()));
connect(_realTimeAutoBin, SIGNAL(clicked()), this, SIGNAL(modified()));
connect(_normalizationIsNumber, SIGNAL(clicked()), this, SIGNAL(modified()));
Expand Down

0 comments on commit de29288

Please sign in to comment.