dialog_edit_label.cpp: fix a minor compil warning (shadowed var)

This commit is contained in:
jean-pierre charras 2020-05-29 19:52:51 +02:00
parent 788e29a630
commit e8c1738361
1 changed files with 4 additions and 4 deletions

View File

@ -333,8 +333,8 @@ void DIALOG_LABEL_EDITOR::onScintillaCharAdded( wxStyledTextEvent &aEvent )
{ {
wxStyledTextCtrl* te = m_valueMultiLine; wxStyledTextCtrl* te = m_valueMultiLine;
wxArrayString autocompleteTokens; wxArrayString autocompleteTokens;
int pos = te->GetCurrentPos(); int text_pos = te->GetCurrentPos();
int start = te->WordStartPosition( pos, true ); int start = te->WordStartPosition( text_pos, true );
wxString partial; wxString partial;
auto textVarRef = auto textVarRef =
@ -350,7 +350,7 @@ void DIALOG_LABEL_EDITOR::onScintillaCharAdded( wxStyledTextEvent &aEvent )
if( textVarRef( refStart ) ) if( textVarRef( refStart ) )
{ {
partial = te->GetRange( start+1, pos ); partial = te->GetRange( start+1, text_pos );
wxString ref = te->GetRange( refStart, start-1 ); wxString ref = te->GetRange( refStart, start-1 );
SCH_SHEET_LIST sheets = m_Parent->Schematic().GetSheets(); SCH_SHEET_LIST sheets = m_Parent->Schematic().GetSheets();
@ -374,7 +374,7 @@ void DIALOG_LABEL_EDITOR::onScintillaCharAdded( wxStyledTextEvent &aEvent )
} }
else if( textVarRef( start ) ) else if( textVarRef( start ) )
{ {
partial = te->GetTextRange( start, pos ); partial = te->GetTextRange( start, text_pos );
m_CurrentText->GetContextualTextVars( &autocompleteTokens ); m_CurrentText->GetContextualTextVars( &autocompleteTokens );