Wrap code for better readability

This commit is contained in:
Simon De Backer
2020-08-28 18:32:24 +02:00
parent d8cbcf3b54
commit f4550ab3b4
3 changed files with 51 additions and 28 deletions

View File

@@ -31,6 +31,9 @@ namespace Ui {
class SelectAutonumW;
}
/**
@brief The SelectAutonumW class
*/
class SelectAutonumW : public QWidget
{
Q_OBJECT
@@ -38,7 +41,9 @@ class SelectAutonumW : public QWidget
//METHODS
public:
explicit SelectAutonumW(int type, QWidget *parent = nullptr);
explicit SelectAutonumW(const NumerotationContext &context, int type, QWidget *parent = nullptr);
explicit SelectAutonumW(const NumerotationContext &context,
int type,
QWidget *parent = nullptr);
~SelectAutonumW() override;
void setContext (const NumerotationContext &context);
@@ -70,7 +75,7 @@ class SelectAutonumW : public QWidget
NumerotationContext m_context;
FormulaAutonumberingW *m_feaw;
FormulaAutonumberingW *m_fcaw;
int m_edited_type = -1; //0 == element : 1 == conductor : 2 == folio
int m_edited_type = -1; ///<0 == element : 1 == conductor : 2 == folio
};
#endif // SELECTAUTONUMW_H