Skip to content

Commit

Permalink
Refs #4446 fix warning message in SliceViewer
Browse files Browse the repository at this point in the history
  • Loading branch information
Janik Zikovsky committed Jan 11, 2012
1 parent 8f8f04f commit 021e40d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public slots:
void adaptiveBinsChanged();
void setFreeDimensions(size_t dimX, size_t dimY);
void on_radNumBins_toggled();
void on_textBinWidth_changed();
void textBinWidth_changed();

signals:
/// Signal emitted when the planar width changes
Expand Down
4 changes: 2 additions & 2 deletions Code/Mantid/MantidQt/SliceViewer/src/LineViewer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ LineViewer::LineViewer(QWidget *parent)
QObject::connect(ui.spinNumBins, SIGNAL(valueChanged(int)), this, SLOT(numBinsChanged()));
QObject::connect(ui.textPlaneWidth, SIGNAL(textEdited(QString)), this, SLOT(widthTextEdited()));
QObject::connect(ui.radNumBins, SIGNAL(toggled(bool)), this, SLOT(on_radNumBins_toggled()));
QObject::connect(ui.textBinWidth, SIGNAL(editingFinished()), this, SLOT(on_textBinWidth_changed()));
QObject::connect(ui.textBinWidth, SIGNAL(editingFinished()), this, SLOT(textBinWidth_changed()));
}

LineViewer::~LineViewer()
Expand Down Expand Up @@ -416,7 +416,7 @@ void LineViewer::on_radNumBins_toggled()
/** Slot called when the desired fixed bin width text box
* is edited and the user pressed Return or lost focus.
*/
void LineViewer::on_textBinWidth_changed()
void LineViewer::textBinWidth_changed()
{
if (m_fixedBinWidthMode)
{
Expand Down

0 comments on commit 021e40d

Please sign in to comment.