More stubs

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3694 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster
1999-09-17 21:45:56 +00:00
parent 2d0294308d
commit 0616b8382d
3 changed files with 23 additions and 8 deletions

View File

@@ -2,7 +2,7 @@
// Name: checklst.cpp
// Purpose: implementation of wxCheckListBox class
// Author: AUTHOR
// Modified by:
// Modified by:
// Created: ??/??/98
// RCS-ID: $Id$
// Copyright: (c) AUTHOR
@@ -60,13 +60,13 @@ wxCheckListBox::wxCheckListBox(wxWindow *parent, wxWindowID id,
// check items
// -----------
bool wxCheckListBox::IsChecked(uint uiIndex) const
bool wxCheckListBox::IsChecked(unsigned int uiIndex) const
{
// TODO
return FALSE;
}
void wxCheckListBox::Check(uint uiIndex, bool bCheck)
void wxCheckListBox::Check(unsigned int uiIndex, bool bCheck)
{
// TODO
}