summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-12-23 22:06:32 +0000
committerCarl Hetherington <cth@carlh.net>2018-12-23 22:06:32 +0000
commit83bb88d42e036292db6f7108376ce5f40cc604c4 (patch)
tree53fee913a8a41ff24c9c2f05b6b5c0bbbc14b627
parentca904732e0833b8da2284bc81deef48ce67e1323 (diff)
Fix thinko in previous.
-rw-r--r--src/tools/dcpomatic.cc2
-rw-r--r--src/tools/dcpomatic_player.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc
index ee79aeb37..193611f30 100644
--- a/src/tools/dcpomatic.cc
+++ b/src/tools/dcpomatic.cc
@@ -1408,7 +1408,7 @@ private:
Config::FailedToLoad.connect (boost::bind (&App::config_failed_to_load, this));
Config::Warning.connect (boost::bind (&App::config_warning, this, _1));
- wxSplashScreen* splash = maybe_show_splash ();
+ splash = maybe_show_splash ();
SetAppName (_("DCP-o-matic"));
diff --git a/src/tools/dcpomatic_player.cc b/src/tools/dcpomatic_player.cc
index 1b55df7d4..32e5b16d6 100644
--- a/src/tools/dcpomatic_player.cc
+++ b/src/tools/dcpomatic_player.cc
@@ -997,7 +997,7 @@ private:
Config::FailedToLoad.connect (boost::bind (&App::config_failed_to_load, this));
Config::Warning.connect (boost::bind (&App::config_warning, this, _1));
- wxSplashScreen* splash = maybe_show_splash ();
+ splash = maybe_show_splash ();
SetAppName (_("DCP-o-matic Player"));