Fix clang build error due to ambiguous function GetSheet() in SCH_SHEET_PATH.
This commit is contained in:
parent
eb800d903f
commit
859435cabe
|
@ -366,7 +366,7 @@ void SCH_EDIT_FRAME::OnFindReplace( wxFindDialogEvent& aEvent )
|
|||
|
||||
SetUndoItem( undoItem );
|
||||
|
||||
sheet = schematic.GetSheet( data.GetSheetPath() );
|
||||
sheet = schematic.GetSheetByPath( data.GetSheetPath() );
|
||||
|
||||
wxCHECK_RET( sheet != NULL, wxT( "Could not find sheet path " ) + data.GetSheetPath() );
|
||||
|
||||
|
@ -396,7 +396,7 @@ void SCH_EDIT_FRAME::OnFindReplace( wxFindDialogEvent& aEvent )
|
|||
|
||||
SetUndoItem( undoItem );
|
||||
|
||||
sheet = schematic.GetSheet( data.GetSheetPath() );
|
||||
sheet = schematic.GetSheetByPath( data.GetSheetPath() );
|
||||
|
||||
wxCHECK_RET( sheet != NULL, wxT( "Could not find sheet path " ) + data.GetSheetPath() );
|
||||
|
||||
|
@ -429,7 +429,7 @@ void SCH_EDIT_FRAME::updateFindReplaceView( wxFindDialogEvent& aEvent )
|
|||
{
|
||||
wxLogTrace( traceFindReplace, wxT( "Found " ) + m_foundItems.GetText() );
|
||||
|
||||
SCH_SHEET_PATH* sheet = schematic.GetSheet( data.GetSheetPath() );
|
||||
SCH_SHEET_PATH* sheet = schematic.GetSheetByPath( data.GetSheetPath() );
|
||||
|
||||
wxCHECK_RET( sheet != NULL, wxT( "Could not find sheet path " ) +
|
||||
data.GetSheetPath() );
|
||||
|
|
|
@ -624,7 +624,7 @@ SCH_SHEET_PATH* SCH_SHEET_LIST::GetSheet( int aIndex ) const
|
|||
}
|
||||
|
||||
|
||||
SCH_SHEET_PATH* SCH_SHEET_LIST::GetSheet( const wxString aPath, bool aHumanReadable )
|
||||
SCH_SHEET_PATH* SCH_SHEET_LIST::GetSheetByPath( const wxString aPath, bool aHumanReadable )
|
||||
{
|
||||
SCH_SHEET_PATH* sheet = GetFirst();
|
||||
wxString sheetPath;
|
||||
|
|
|
@ -423,7 +423,7 @@ public:
|
|||
SCH_SHEET_PATH* GetSheet( int aIndex ) const;
|
||||
|
||||
/**
|
||||
* Function GetSheet
|
||||
* Function GetSheetByPath
|
||||
* returns a sheet matching the path name in \a aPath.
|
||||
*
|
||||
* @param aPath A wxString object containing path of the sheet to get.
|
||||
|
@ -432,7 +432,7 @@ public:
|
|||
* @return The sheet that matches \a aPath or NULL if no sheet matching
|
||||
* \a aPath is found.
|
||||
*/
|
||||
SCH_SHEET_PATH* GetSheet( const wxString aPath, bool aHumanReadable = true );
|
||||
SCH_SHEET_PATH* GetSheetByPath( const wxString aPath, bool aHumanReadable = true );
|
||||
|
||||
/**
|
||||
* Function IsModified
|
||||
|
|
Loading…
Reference in New Issue