Navigation Menu

Skip to content

Commit

Permalink
Fixed indentation symbols consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
Uriziel01 committed Aug 22, 2019
1 parent 8f07453 commit 6696b82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cpp/QtWidgets/QProgressBar/qprogressbar_wrap.cpp
Expand Up @@ -14,7 +14,7 @@ Napi::Object QProgressBarWrap::init(Napi::Env env, Napi::Object exports) {
InstanceMethod("setValue", &QProgressBarWrap::setValue),
InstanceMethod("setMaximum", &QProgressBarWrap::setMaximum),
InstanceMethod("setMinimum", &QProgressBarWrap::setMinimum),
InstanceMethod("setOrientation", &QProgressBarWrap::setOrientation),
InstanceMethod("setOrientation", &QProgressBarWrap::setOrientation),
InstanceMethod("value", &QProgressBarWrap::value),
QWIDGET_WRAPPED_METHODS_EXPORT_DEFINE(QProgressBarWrap)
});
Expand Down
2 changes: 1 addition & 1 deletion src/lib/QtWidgets/QProgressBar/index.ts
Expand Up @@ -23,7 +23,7 @@ export class QProgressBar extends NodeWidget {
this.setValue.bind(this);
this.setMinimum.bind(this);
this.setMaximum.bind(this);
this.setOrientation.bind(this);
this.setOrientation.bind(this);
this.value.bind(this);
}
setValue(value: number) {
Expand Down

0 comments on commit 6696b82

Please sign in to comment.