From: Carl Hetherington Date: Sun, 23 Dec 2018 22:06:32 +0000 (+0000) Subject: Fix thinko in previous. X-Git-Tag: v2.13.91~6 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=83bb88d42e036292db6f7108376ce5f40cc604c4 Fix thinko in previous. --- 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"));