mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Cleanup: rename variable PrintOptions to printOptions
We're quite inconsistent when it comes to variable naming. The general usage is camelCase for Qt parts and snake_case for core code. Virtually nowhere do we start variable names with a capital letter. Therefore, turn this one weird case into camelCase. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
449dec8269
commit
af00361929
2 changed files with 11 additions and 11 deletions
|
@ -20,14 +20,14 @@ extern QList<QString> grantlee_templates, grantlee_statistics_templates;
|
|||
class TemplateLayout : public QObject {
|
||||
Q_OBJECT
|
||||
public:
|
||||
TemplateLayout(print_options *PrintOptions, template_options *templateOptions);
|
||||
TemplateLayout(print_options *printOptions, template_options *templateOptions);
|
||||
QString generate();
|
||||
QString generateStatistics();
|
||||
static QString readTemplate(QString template_name);
|
||||
static void writeTemplate(QString template_name, QString grantlee_template);
|
||||
|
||||
private:
|
||||
print_options *PrintOptions;
|
||||
print_options *printOptions;
|
||||
template_options *templateOptions;
|
||||
|
||||
signals:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue