Browse Source

Windows, msys2 build: fix cast not accepted by GCC

pull/18/head
jean-pierre charras 3 months ago
parent
commit
d0288dbcbf
  1. 2
      libs/kiplatform/os/windows/environment.cpp

2
libs/kiplatform/os/windows/environment.cpp

@ -432,7 +432,7 @@ void KIPLATFORM::ENV::SetAppDetailsForWindow( wxWindow* aWindow, const wxString&
PROPVARIANT pv;
// This is required for any the other properties to actually work
hr = ::InitPropVariantFromString( GetAppUserModelId(), &pv );
hr = ::InitPropVariantFromString( GetAppUserModelId().wc_str(), &pv );
if( SUCCEEDED( hr ) )
{

Loading…
Cancel
Save