}
// Listbox item
-wxListBox::wxListBox(void)
+wxListBox::wxListBox()
{
m_noItems = 0;
m_selected = 0;
return TRUE;
}
-wxListBox::~wxListBox(void)
+wxListBox::~wxListBox()
{
#if wxUSE_OWNER_DRAWN
size_t uiCount = m_aItems.Count();
#endif
}
-void wxListBox::SetupColours(void)
+void wxListBox::SetupColours()
{
SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW));
SetForegroundColour(GetParent()->GetForegroundColour());
return pos;
}
-void wxListBox::Clear(void)
+void wxListBox::Clear()
{
ListBox_ResetContent(hwnd);
return wxString(wxBuffer);
}
-void wxListBox::SetSize(int x, int y, int width, int height, int sizeFlags)
+void wxListBox::DoSetSize(int x, int y, int width, int height, int sizeFlags)
{
int currentX, currentY;
GetPosition(¤tX, ¤tY);
#endif //USE_OWNER_DRAWN
}
-int wxListBox::Number (void) const
+int wxListBox::Number () const
{
return m_noItems;
}
// For single selection items only
-wxString wxListBox::GetStringSelection (void) const
+wxString wxListBox::GetStringSelection () const
{
int sel = GetSelection ();
if (sel > -1)