Cvpcb, fp conflict assignment selector: fix issue on Linux.
This commit is contained in:
commit
b87d034158
|
@ -34,11 +34,11 @@
|
|||
DIALOG_FP_CONFLICT_ASSIGNMENT_SELECTOR::DIALOG_FP_CONFLICT_ASSIGNMENT_SELECTOR( wxWindow* aParent )
|
||||
: DIALOG_FP_CONFLICT_ASSIGNMENT_SELECTOR_BASE( aParent )
|
||||
{
|
||||
m_listFp->InsertColumn( 0, _( "Ref" ) );
|
||||
m_listFp->InsertColumn( 1, _( "Schematic assignment" ) );
|
||||
m_listFp->InsertColumn( 2, wxT( "<=" ) );
|
||||
m_listFp->InsertColumn( 3, wxT( "=>" ) );
|
||||
m_listFp->InsertColumn( 4, _( "Cmp file assignment" ) );
|
||||
m_listFp->AppendColumn( _( "Ref" ) );
|
||||
m_listFp->AppendColumn( _( "Schematic assignment" ) );
|
||||
m_listFp->AppendColumn( wxT( "<=" ) );
|
||||
m_listFp->AppendColumn( wxT( "=>" ) );
|
||||
m_listFp->AppendColumn( _( "Cmp file assignment" ) );
|
||||
|
||||
m_lineCount = 0;
|
||||
}
|
||||
|
@ -46,29 +46,12 @@ DIALOG_FP_CONFLICT_ASSIGNMENT_SELECTOR::DIALOG_FP_CONFLICT_ASSIGNMENT_SELECTOR(
|
|||
void DIALOG_FP_CONFLICT_ASSIGNMENT_SELECTOR::Add( const wxString& aRef, const wxString& aFpSchName,
|
||||
const wxString& aFpCmpName )
|
||||
{
|
||||
wxListItem item;
|
||||
long idx = m_listFp->InsertItem(m_lineCount, aRef );
|
||||
|
||||
item.SetId( m_lineCount );
|
||||
item.SetText( aRef );
|
||||
item.SetColumn( COL_REF );
|
||||
m_listFp->InsertItem( item );
|
||||
|
||||
item.SetText( aFpSchName );
|
||||
item.SetColumn( COL_FPSCH );
|
||||
m_listFp->SetItem( item );
|
||||
|
||||
|
||||
item.SetText( wxT("") );
|
||||
item.SetColumn( COL_SELSCH );
|
||||
m_listFp->SetItem( item );
|
||||
|
||||
item.SetText( wxT("X") );
|
||||
item.SetColumn( COL_SELCMP );
|
||||
m_listFp->SetItem( item );
|
||||
|
||||
item.SetText( aFpCmpName );
|
||||
item.SetColumn( COL_FPCMP );
|
||||
m_listFp->SetItem( item );
|
||||
m_listFp->SetItem(idx, COL_FPSCH, aFpSchName );
|
||||
m_listFp->SetItem(idx, COL_SELSCH, wxT("") );
|
||||
m_listFp->SetItem(idx, COL_SELCMP, wxT("X") );
|
||||
m_listFp->SetItem(idx, COL_FPCMP, aFpCmpName );
|
||||
|
||||
m_lineCount ++;
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ DIALOG_FP_CONFLICT_ASSIGNMENT_SELECTOR_BASE::DIALOG_FP_CONFLICT_ASSIGNMENT_SELEC
|
|||
m_staticTextInfo->Wrap( -1 );
|
||||
bSizerMain->Add( m_staticTextInfo, 0, wxALL|wxEXPAND, 5 );
|
||||
|
||||
m_listFp = new wxListCtrl( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_HRULES|wxLC_ICON|wxLC_REPORT|wxLC_SINGLE_SEL|wxLC_VRULES );
|
||||
m_listFp = new wxListCtrl( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_HRULES|wxLC_REPORT|wxLC_SINGLE_SEL|wxLC_VRULES );
|
||||
bSizerMain->Add( m_listFp, 1, wxALL|wxEXPAND, 5 );
|
||||
|
||||
m_sdbSizer = new wxStdDialogButtonSizer();
|
||||
|
|
|
@ -225,7 +225,7 @@
|
|||
<property name="resize">Resizable</property>
|
||||
<property name="show">1</property>
|
||||
<property name="size"></property>
|
||||
<property name="style">wxLC_HRULES|wxLC_ICON|wxLC_REPORT|wxLC_SINGLE_SEL|wxLC_VRULES</property>
|
||||
<property name="style">wxLC_HRULES|wxLC_REPORT|wxLC_SINGLE_SEL|wxLC_VRULES</property>
|
||||
<property name="subclass"></property>
|
||||
<property name="toolbar_pane">0</property>
|
||||
<property name="tooltip"></property>
|
||||
|
|
Loading…
Reference in New Issue