diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-09-06 00:09:51 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-09-06 00:09:51 +0200 |
| commit | 4cff4f2cb09685d8e5d4a0fafe43089bca9441d1 (patch) | |
| tree | 392fc4a9386b8119f1dc0b9d1d747ac14cb637f6 /src/wx/auto_crop_dialog.cc | |
| parent | 78cc2db4d8899ae22ccc96db5012b33a00d394fc (diff) | |
Cleanup: assume DCPOMATIC_SPIN_CTRL_WIDTH.
Diffstat (limited to 'src/wx/auto_crop_dialog.cc')
| -rw-r--r-- | src/wx/auto_crop_dialog.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wx/auto_crop_dialog.cc b/src/wx/auto_crop_dialog.cc index 15beecad8..f95aea559 100644 --- a/src/wx/auto_crop_dialog.cc +++ b/src/wx/auto_crop_dialog.cc @@ -29,15 +29,15 @@ AutoCropDialog::AutoCropDialog(wxWindow* parent, Crop crop) : TableDialog(parent, _("Auto crop"), 2, 1, true) { add(_("Left"), true); - _left = add(new SpinCtrl(this, DCPOMATIC_SPIN_CTRL_WIDTH)); + _left = add(new SpinCtrl(this)); add(_("Right"), true); - _right = add(new SpinCtrl(this, DCPOMATIC_SPIN_CTRL_WIDTH)); + _right = add(new SpinCtrl(this)); add(_("Top"), true); - _top = add(new SpinCtrl(this, DCPOMATIC_SPIN_CTRL_WIDTH)); + _top = add(new SpinCtrl(this)); add(_("Bottom"), true); - _bottom = add(new SpinCtrl(this, DCPOMATIC_SPIN_CTRL_WIDTH)); + _bottom = add(new SpinCtrl(this)); add(_("Threshold"), true); - _threshold = add(new SpinCtrl(this, DCPOMATIC_SPIN_CTRL_WIDTH)); + _threshold = add(new SpinCtrl(this)); _left->SetRange(0, 4096); _right->SetRange(0, 4096); |
