Skip to content

Commit

Permalink
Corrected tab stop in IDA
Browse files Browse the repository at this point in the history
Refs #10094
  • Loading branch information
DanNixon committed Oct 9, 2014
1 parent 33e90d9 commit 239e897
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Expand Up @@ -2854,14 +2854,14 @@
<tabstop>confit_ckSaveSeq</tabstop>
<tabstop>absp_ckUseCan</tabstop>
<tabstop>absp_cbShape</tabstop>
<tabstop>absp_leavar</tabstop>
<tabstop>absp_lewidth</tabstop>
<tabstop>absp_lets</tabstop>
<tabstop>absp_letc1</tabstop>
<tabstop>absp_letc2</tabstop>
<tabstop>absp_ler1</tabstop>
<tabstop>absp_ler2</tabstop>
<tabstop>absp_ler3</tabstop>
<tabstop>absp_leavar</tabstop>
<tabstop>absp_lewidth</tabstop>
<tabstop>absp_lesamden</tabstop>
<tabstop>absp_cbSampleInputType</tabstop>
<tabstop>absp_lesamsigs</tabstop>
Expand Down
3 changes: 2 additions & 1 deletion Code/Mantid/MantidQt/CustomInterfaces/src/CalcCorr.cpp
Expand Up @@ -54,7 +54,8 @@ class QDoubleMultiRangeValidator : public QValidator
// For each range in the list, use the slave QDoubleValidator to find out the state.
for( auto range = m_ranges.begin(); range != m_ranges.end(); ++ range )
{
assert(range->first < range->second); // Play nice.
if(range->first >= range->second)
throw std::runtime_error("Invalid range");

m_slaveVal->setBottom(range->first);
m_slaveVal->setTop(range->second);
Expand Down

0 comments on commit 239e897

Please sign in to comment.