Loading common/edaappl.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -683,7 +683,7 @@ void EDA_APP::SaveSettings() wxASSERT( m_settings != NULL ); m_settings->Write( wxT( "ShowPageLimits" ), g_ShowPageLimits ); 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 */ m_fileHistory.Save( *m_settings ); Loading common/projet_config.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -505,7 +505,7 @@ void PARAM_CFG_SETCOLOR::SaveParam( wxConfigBase* aConfig ) const if( m_Pt_param == NULL || aConfig == NULL ) return; aConfig->Write( m_Ident, *m_Pt_param ); aConfig->Write( m_Ident, (long) *m_Pt_param ); } Loading Loading
common/edaappl.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -683,7 +683,7 @@ void EDA_APP::SaveSettings() wxASSERT( m_settings != NULL ); m_settings->Write( wxT( "ShowPageLimits" ), g_ShowPageLimits ); 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 */ m_fileHistory.Save( *m_settings ); Loading
common/projet_config.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -505,7 +505,7 @@ void PARAM_CFG_SETCOLOR::SaveParam( wxConfigBase* aConfig ) const if( m_Pt_param == NULL || aConfig == NULL ) return; aConfig->Write( m_Ident, *m_Pt_param ); aConfig->Write( m_Ident, (long) *m_Pt_param ); } Loading