r24124 by jghali - Code style fixes
scribus-commit
scribus-commit at lists.scribus.net
Thu Oct 29 16:31:24 UTC 2020
Author: jghali
Date: Thu Oct 29 16:31:24 2020
New Revision: 24124
URL: http://scribus.net/websvn/listing.php?repname=Scribus&sc=1&rev=24124
Log:
Code style fixes
Modified:
trunk/Scribus/scribus/plugins/tools/hunspellcheck/hunspelldialog.cpp
Modified: trunk/Scribus/scribus/plugins/tools/hunspellcheck/hunspelldialog.cpp
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=24124&path=/trunk/Scribus/scribus/plugins/tools/hunspellcheck/hunspelldialog.cpp
==============================================================================
--- trunk/Scribus/scribus/plugins/tools/hunspellcheck/hunspelldialog.cpp (original)
+++ trunk/Scribus/scribus/plugins/tools/hunspellcheck/hunspelldialog.cpp Thu Oct 29 16:31:24 2020
@@ -97,7 +97,7 @@
} while (m_wfListIndex<m_wfList->count() && (m_wfList->at(m_wfListIndex).changed || m_wfList->at(m_wfListIndex).ignore));
//qDebug()<<"selected word index"<<m_wfListIndex;
}
- if (m_wfListIndex>=m_wfList->count())
+ if (m_wfListIndex >= m_wfList->count())
{
statusLabel->setText(tr("Spelling check complete"));
suggestionsListWidget->clear();
@@ -109,7 +109,7 @@
return;
}
statusLabel->setText("");
- currWF=m_wfList->at(m_wfListIndex);
+ currWF = m_wfList->at(m_wfListIndex);
setLanguageCombo(currWF.lang);
updateSuggestions(currWF.replacements);
More information about the scribus-commit
mailing list