Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
fix parameter's name camelcase
- Loading branch information
Showing
with
3 additions
and
3 deletions.
-
+2
−2
src/app/qgsattributetypedialog.cpp
-
+1
−1
src/app/qgsattributetypedialog.h
|
@@ -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 |
|
|
|
@@ -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 |
|
|