Fix compil error and minor compil warnings

This commit is contained in:
jean-pierre charras 2019-08-27 08:55:17 +02:00
parent 85eed87b28
commit 37b166348a
2 changed files with 3 additions and 4 deletions

View File

@ -134,9 +134,8 @@ DIALOG_PAGES_SETTINGS::DIALOG_PAGES_SETTINGS( EDA_DRAW_FRAME* parent, wxSize aMa
DIALOG_PAGES_SETTINGS::~DIALOG_PAGES_SETTINGS()
{
wxConfigBase* config = Kiface().KifaceSettings();
#ifdef EESCHEMA
wxConfigBase* config = Kiface().KifaceSettings();
config->Write( KEY_EXPORT_REVISION, m_RevisionExport->GetValue() );
config->Write( KEY_EXPORT_DATE, m_DateExport->GetValue() );
config->Write( KEY_EXPORT_TITLE, m_TitleExport->GetValue() );
@ -159,7 +158,6 @@ DIALOG_PAGES_SETTINGS::~DIALOG_PAGES_SETTINGS()
void DIALOG_PAGES_SETTINGS::initDialog()
{
wxConfigBase* config = Kiface().KifaceSettings();
wxString msg;
// initialize page format choice box and page format list.
@ -223,6 +221,7 @@ void DIALOG_PAGES_SETTINGS::initDialog()
m_TextComment9->SetValue( m_tb.GetComment( 8 ) );
#ifdef EESCHEMA
wxConfigBase* config = Kiface().KifaceSettings();
m_RevisionExport->SetValue( config->ReadBool( KEY_EXPORT_REVISION, false ) );
m_DateExport->SetValue( config->ReadBool( KEY_EXPORT_DATE, false ) );
m_TitleExport->SetValue( config->ReadBool( KEY_EXPORT_TITLE, false ) );

View File

@ -45,7 +45,7 @@ EDIT_POINTS::EDIT_POINTS( EDA_ITEM* aParent )
EDIT_POINT* EDIT_POINTS::FindPoint( const VECTOR2I& aLocation, KIGFX::VIEW *aView ) // fixme: ugly
{
unsigned size = std::abs<int>( KiROUND( aView->ToWorld( EDIT_POINT::POINT_SIZE ) ) );
unsigned size = std::abs( KiROUND( aView->ToWorld( EDIT_POINT::POINT_SIZE ) ) );
if( m_allowPoints )
{