diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-04-18 12:53:16 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-04-18 12:53:16 +0200 |
| commit | 6a2d9674cee32820b8f4b98e455b65d0072eef81 (patch) | |
| tree | bed95d359828b20a9f7ada48ccb83b3d49f93f50 | |
| parent | 6dc129234d82aaf6a64597609f5a5325de39b2a5 (diff) | |
Cleanup: longer variable name.
| -rw-r--r-- | src/tools/dcpomatic.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc index 5b43e510c..bd5be54ae 100644 --- a/src/tools/dcpomatic.cc +++ b/src/tools/dcpomatic.cc @@ -1270,8 +1270,8 @@ private: } if (_film->dirty ()) { - T d (_film->name ()); - switch (d.run ()) { + T dialog(_film->name()); + switch (dialog.run()) { case wxID_NO: return true; case wxID_YES: |
