Fix a compil issue.

This commit is contained in:
jean-pierre charras 2020-04-18 09:02:51 +02:00
parent 8abe07f6e7
commit 8f0449cbab
1 changed files with 1 additions and 1 deletions

View File

@ -360,7 +360,7 @@ void EDA_BASE_FRAME::LoadWindowSettings( WINDOW_SETTINGS* aCfg )
wxLogTrace( traceDisplayLocation, "Previous display not found" ); wxLogTrace( traceDisplayLocation, "Previous display not found" );
// If it isn't attached, use the first display // If it isn't attached, use the first display
wxDisplay display( 0 ); wxDisplay display( int( 0 ) );
wxRect clientSize = display.GetClientArea(); wxRect clientSize = display.GetClientArea();
wxLogDebug( "Client size (%d, %d)", clientSize.width, clientSize.height ); wxLogDebug( "Client size (%d, %d)", clientSize.width, clientSize.height );