From eaa3fe14566ad6e8630eb0e7aa0ca4eda7531bfe Mon Sep 17 00:00:00 2001 From: Fredrik Mellbin Date: Mon, 30 Jan 2006 20:04:33 +0000 Subject: [PATCH] The easy fix for the splash screen crash Originally committed to SVN as r51. --- core/frame_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/frame_main.cpp b/core/frame_main.cpp index 3288c1054..14fe51baa 100644 --- a/core/frame_main.cpp +++ b/core/frame_main.cpp @@ -73,7 +73,7 @@ FrameMain::FrameMain (wxArrayString args) // Splash screen #ifndef _DEBUG if (Options.AsBool(_T("Show Splash"))) { - SplashScreen *splash = new SplashScreen(this); + SplashScreen *splash = new SplashScreen(NULL); splash->Show(true); } else {