Mercurial > minori
comparison src/gui/widgets/text.cpp @ 76:3364fadc8a36
*: format source code
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Wed, 04 Oct 2023 01:46:33 -0400 |
parents | d3e9310598b1 |
children | 6f7385bd334c |
comparison
equal
deleted
inserted
replaced
75:d3e9310598b1 | 76:3364fadc8a36 |
---|---|
125 | 125 |
126 Paragraph* Section::GetParagraph() { | 126 Paragraph* Section::GetParagraph() { |
127 return paragraph; | 127 return paragraph; |
128 } | 128 } |
129 | 129 |
130 LabelledSection::LabelledSection(QString title, QString label, QString data, QWidget* parent) | 130 LabelledSection::LabelledSection(QString title, QString label, QString data, QWidget* parent) : QWidget(parent) { |
131 : QWidget(parent) { | |
132 QVBoxLayout* layout = new QVBoxLayout(this); | 131 QVBoxLayout* layout = new QVBoxLayout(this); |
133 | 132 |
134 header = new Header(title, this); | 133 header = new Header(title, this); |
135 | 134 |
136 // this is not accessible from the object because there's really | 135 // this is not accessible from the object because there's really |