Skip to content

Commit

Permalink
fix parameter's name camelcase
Browse files Browse the repository at this point in the history
  • Loading branch information
pblottiere committed May 31, 2016
1 parent a636319 commit 7d71c97
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/qgsattributetypedialog.cpp
Expand Up @@ -170,9 +170,9 @@ bool QgsAttributeTypeDialog::fieldEditable() const
return isFieldEditableCheckBox->isChecked();
}

void QgsAttributeTypeDialog::setNotNull( bool notnull )
void QgsAttributeTypeDialog::setNotNull( bool notNull )
{
notNullCheckBox->setChecked( notnull );
notNullCheckBox->setChecked( notNull );
}

bool QgsAttributeTypeDialog::labelOnTop() const
Expand Down
2 changes: 1 addition & 1 deletion src/app/qgsattributetypedialog.h
Expand Up @@ -87,7 +87,7 @@ class APP_EXPORT QgsAttributeTypeDialog: public QDialog, private Ui::QgsAttribut
/**
* Getter for checkbox for not null
*/
void setNotNull( bool notnull );
void setNotNull( bool notNull );

/**
* Getter for checkbox for not null
Expand Down

0 comments on commit 7d71c97

Please sign in to comment.