Mod: redundant void 2

This commit is contained in:
berniev
2022-08-07 20:05:16 +10:00
committed by wwmayer
parent 311abcc43e
commit da9ebc572f
805 changed files with 3787 additions and 3787 deletions

View File

@@ -351,7 +351,7 @@ void TaskSectionView::enableAll(bool b)
}
//******************************************************************************
bool TaskSectionView::apply(void)
bool TaskSectionView::apply()
{
// Base::Console().Message("TSV::apply() - m_dirName: %s\n", m_dirName.c_str());
if (m_dirName.empty()) {
@@ -390,7 +390,7 @@ void TaskSectionView::applyQuick(std::string dir)
m_base->requestPaint();
}
void TaskSectionView::applyAligned(void)
void TaskSectionView::applyAligned()
{
Base::Console().Message("TSV::applyAligned() - not implemented yet\n");
// Gui::Command::openCommand(QT_TRANSLATE_NOOP("Command", "Apply Aligned"));
@@ -401,7 +401,7 @@ void TaskSectionView::applyAligned(void)
//*********************************************************************
//pointer to created view is not returned, but stored in m_section
void TaskSectionView::createSectionView(void)
void TaskSectionView::createSectionView()
{
// Base::Console().Message("TSV::createSectionView()\n");
if (!isBaseValid()) {
@@ -448,7 +448,7 @@ void TaskSectionView::createSectionView(void)
return;
}
void TaskSectionView::updateSectionView(void)
void TaskSectionView::updateSectionView()
{
// Base::Console().Message("TSV::updateSectionView() - m_sectionName: %s\n", m_sectionName.c_str());
if (!isSectionValid()) {
@@ -498,7 +498,7 @@ void TaskSectionView::failNoObject(std::string objectName)
m_abort = true;
}
bool TaskSectionView::isBaseValid(void)
bool TaskSectionView::isBaseValid()
{
if (!m_base)
return false;
@@ -510,7 +510,7 @@ bool TaskSectionView::isBaseValid(void)
return true;
}
bool TaskSectionView::isSectionValid(void)
bool TaskSectionView::isSectionValid()
{
if (!m_section)
return false;