git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43289
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
void wxComboBox::SetInsertionPoint(long pos)
{
void wxComboBox::SetInsertionPoint(long pos)
{
+ if ( m_text )
+ m_text->SetInsertionPoint(pos);
}
void wxComboBox::SetInsertionPointEnd()
{
}
void wxComboBox::SetInsertionPointEnd()
{
+ if ( m_text )
+ m_text->SetInsertionPointEnd();
}
long wxComboBox::GetInsertionPoint() const
{
}
long wxComboBox::GetInsertionPoint() const
{
+ if ( m_text )
+ return m_text->GetInsertionPoint();
return 0;
}
wxTextPos wxComboBox::GetLastPosition() const
{
return 0;
}
wxTextPos wxComboBox::GetLastPosition() const
{
+ if ( m_text )
+ return m_text->GetLastPosition();
return 0;
}
void wxComboBox::Replace(long from, long to, const wxString& value)
{
return 0;
}
void wxComboBox::Replace(long from, long to, const wxString& value)
{
+ if ( m_text )
+ m_text->Replace(from,to,value);
}
void wxComboBox::Remove(long from, long to)
{
}
void wxComboBox::Remove(long from, long to)
{
+ if ( m_text )
+ m_text->Remove(from,to);
}
void wxComboBox::SetSelection(long from, long to)
{
}
void wxComboBox::SetSelection(long from, long to)
{
+ if ( m_text )
+ m_text->SetSelection(from,to);
}
int wxComboBox::DoAppend(const wxString& item)
}
int wxComboBox::DoAppend(const wxString& item)