Commit 05dc1bbf authored by jean-pierre charras's avatar jean-pierre charras

fix compil errors

parents 34c74d17 3157b4d1
...@@ -683,7 +683,7 @@ void EDA_APP::SaveSettings() ...@@ -683,7 +683,7 @@ void EDA_APP::SaveSettings()
wxASSERT( m_settings != NULL ); wxASSERT( m_settings != NULL );
m_settings->Write( wxT( "ShowPageLimits" ), g_ShowPageLimits ); m_settings->Write( wxT( "ShowPageLimits" ), g_ShowPageLimits );
m_settings->Write( wxT( "WorkingDir" ), wxGetCwd() ); m_settings->Write( wxT( "WorkingDir" ), wxGetCwd() );
m_settings->Write( wxT( "BgColor" ), g_DrawBgColor ); m_settings->Write( wxT( "BgColor" ), (long) g_DrawBgColor );
/* Save the file history list */ /* Save the file history list */
m_fileHistory.Save( *m_settings ); m_fileHistory.Save( *m_settings );
......
...@@ -505,7 +505,7 @@ void PARAM_CFG_SETCOLOR::SaveParam( wxConfigBase* aConfig ) const ...@@ -505,7 +505,7 @@ void PARAM_CFG_SETCOLOR::SaveParam( wxConfigBase* aConfig ) const
if( m_Pt_param == NULL || aConfig == NULL ) if( m_Pt_param == NULL || aConfig == NULL )
return; return;
aConfig->Write( m_Ident, *m_Pt_param ); aConfig->Write( m_Ident, (long) *m_Pt_param );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment