コード例 #1
0
ファイル: listbox.cpp プロジェクト: hgwells/tive
int wxListBox::FindString(const wxString& s, bool WXUNUSED(bCase)) const
{
    // FIXME: back to base class for not supported value of bCase

    return wxDoFindStringInList( (Widget)m_mainWidget, s );
}
コード例 #2
0
ファイル: listbox.cpp プロジェクト: gitrider/wxsj2
int wxListBox::FindString(const wxString& s) const
{
    return wxDoFindStringInList( (Widget)m_mainWidget, s );
}