Wrap code for better readability

This commit is contained in:
Simon De Backer
2020-09-07 22:03:40 +02:00
parent 8ee38fab9e
commit 5d92393ee7
202 changed files with 4031 additions and 2153 deletions

View File

@@ -35,7 +35,8 @@ NameListDialog::NameListDialog(QWidget *parent) :
#endif
}
NameListDialog::~NameListDialog() {
NameListDialog::~NameListDialog()
{
delete ui;
}
@@ -48,7 +49,8 @@ void NameListDialog::setInformationText(const QString &text) {
@return the name list widget used by this dialog.
The ownership of the namelistwidget stay to this dialog
*/
NameListWidget *NameListDialog::namelistWidget() const {
NameListWidget *NameListDialog::namelistWidget() const
{
return m_namelist_widget;
}
@@ -62,6 +64,7 @@ void NameListDialog::setHelpText(const QString &text)
}
}
void NameListDialog::showHelpDialog() {
void NameListDialog::showHelpDialog()
{
QMessageBox::information(this, tr("Variables de cartouche"), m_help_text);
}