From c4df4131dfbcd894b72b86dcc93a60371439396d Mon Sep 17 00:00:00 2001 From: scottbeebiwan <38970930+scottbeebiwan@users.noreply.github.com> Date: Sat, 7 Jul 2018 18:23:01 -0700 Subject: [PATCH] hopefully fixed navigation canceled problems on xp, added all files to vcproj/sln, webbrowser error shows "placeholder crash" as title instead of just the name --- G3DTest.vcproj | 8 ++++++++ IEBrowser.cpp | 2 +- main.cpp | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/G3DTest.vcproj b/G3DTest.vcproj index 277651e..fb4f16f 100644 --- a/G3DTest.vcproj +++ b/G3DTest.vcproj @@ -256,6 +256,14 @@ RelativePath=".\Globals.cpp" > + + + + diff --git a/IEBrowser.cpp b/IEBrowser.cpp index 1a15626..8df0a50 100644 --- a/IEBrowser.cpp +++ b/IEBrowser.cpp @@ -59,7 +59,7 @@ bool IEBrowser::navigateSyncURL(wchar_t* url) } else { - MessageBox(NULL,"Cannot read IWebBrowser2...",Globals::PlaceholderName.c_str(),MB_OK); + MessageBox(NULL,"Cannot read IWebBrowser2...",(Globals::PlaceholderName+" Crash").c_str(),MB_OK); } return false; } \ No newline at end of file diff --git a/main.cpp b/main.cpp index 1e8eeb5..1fd8191 100644 --- a/main.cpp +++ b/main.cpp @@ -141,7 +141,7 @@ Demo::Demo(const GAppSettings& settings,HWND parentWindow) { //: GApp(settings,w SetWindowLongPtr(_hwndRenderer,GWL_USERDATA,(LONG)this); IEBrowser* webBrowser = new IEBrowser(_hwndToolbox); - webBrowser->navigateSyncURL(L"https://scottbeebiwan.tk/g3d/toolbox/"); + webBrowser->navigateSyncURL(L"http://scottbeebiwan.tk/g3d/toolbox/"); } void clearInstances()