diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-01-31 19:39:27 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-01-31 19:39:27 +0000 |
| commit | 0fb8f8c4ec481e342d26a332595d39fcf8cd4e94 (patch) | |
| tree | 1c2315afe0351d182a4bf858e2f964d337785c16 /src/tools | |
| parent | d31bb9dd64630718fe7faa607e61be7ba88e9097 (diff) | |
| parent | 9fa17d52810490359f899cc0cbdb4c25ac74bc92 (diff) | |
Merge branch 'master' of ssh://git.carlh.net/home/carl/git/dcpomatic
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/dcpomatic.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc index 2e8a595ad..db3d22052 100644 --- a/src/tools/dcpomatic.cc +++ b/src/tools/dcpomatic.cc @@ -457,6 +457,7 @@ public: } if (_film) { _film->Change.connect (boost::bind (&DOMFrame::film_change, this, _1)); + _film->Message.connect (boost::bind(&DOMFrame::film_message, this, _1)); } } @@ -466,6 +467,11 @@ public: private: + void film_message (string m) + { + message_dialog (this, std_to_wx(m)); + } + void film_change (ChangeType type) { if (type == CHANGE_TYPE_DONE) { |
