Fix compil warnings
This commit is contained in:
parent
32185ddcd3
commit
aa3a1267ea
|
@ -55,8 +55,8 @@ public:
|
||||||
public:
|
public:
|
||||||
COLORS_DESIGN_SETTINGS();
|
COLORS_DESIGN_SETTINGS();
|
||||||
|
|
||||||
virtual void Load( wxConfigBase *aConfig );
|
virtual void Load( wxConfigBase *aConfig ) override;
|
||||||
virtual void Save( wxConfigBase *aConfig );
|
virtual void Save( wxConfigBase *aConfig ) override;
|
||||||
/**
|
/**
|
||||||
* Function GetLayerColor
|
* Function GetLayerColor
|
||||||
* @return the color for aLayer which is one of the layer indices given
|
* @return the color for aLayer which is one of the layer indices given
|
||||||
|
|
|
@ -67,7 +67,7 @@ class TOOL_SETTINGS : public SETTINGS
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
wxString getKeyName( const wxString& aEntryName ) const;
|
wxString getKeyName( const wxString& aEntryName ) const override;
|
||||||
|
|
||||||
///> Returns pointer to currently used wxConfigBase. It might be NULL, if there is no
|
///> Returns pointer to currently used wxConfigBase. It might be NULL, if there is no
|
||||||
///> TOOL_BASE assigned.
|
///> TOOL_BASE assigned.
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
* or you may write to the Free Software Foundation, Inc.,
|
* or you may write to the Free Software Foundation, Inc.,
|
||||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __PCBNEW_GENERAL_SETTINGS_H
|
#ifndef __PCBNEW_GENERAL_SETTINGS_H
|
||||||
#define __PCBNEW_GENERAL_SETTINGS_H
|
#define __PCBNEW_GENERAL_SETTINGS_H
|
||||||
|
|
||||||
|
@ -41,8 +41,8 @@ class PCB_GENERAL_SETTINGS : public SETTINGS
|
||||||
public:
|
public:
|
||||||
PCB_GENERAL_SETTINGS();
|
PCB_GENERAL_SETTINGS();
|
||||||
|
|
||||||
void Load ( wxConfigBase* aCfg );
|
void Load ( wxConfigBase* aCfg ) override;
|
||||||
void Save( wxConfigBase* aCfg );
|
void Save( wxConfigBase* aCfg ) override;
|
||||||
|
|
||||||
COLORS_DESIGN_SETTINGS m_colorsSettings;
|
COLORS_DESIGN_SETTINGS m_colorsSettings;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue