semi fixed missing sections

This commit is contained in:
Christoph Holzheuer
2025-09-16 16:45:21 +02:00
parent 28aa03b31a
commit bf49d8321f
5 changed files with 31 additions and 31 deletions

View File

@@ -117,7 +117,7 @@ const XQModelSection& XQSectionManager::sectionByKey( const QString& sectionKey
if( hasValidSection( sectionKey ) )
return _sections.at(sectionKey);
throw XQException( "No section for key: ", sectionKey);
throw XQException( "No section for key", sectionKey);
}
@@ -137,7 +137,7 @@ const XQModelSection& XQSectionManager::sectionByRow(int itemRow ) const
return section;
}
throw XQException( "No section for item row: ", QString::number(itemRow));
throw XQException( "No section for item row", QString::number(itemRow));
}