Smartphone fixes.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31262 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2005-01-06 12:31:46 +00:00
parent 11d1f1599c
commit 923f4e79a2
2 changed files with 11 additions and 3 deletions

View File

@@ -86,7 +86,7 @@ enum Orient
class NotebookWidgetsPage : public WidgetsPage
{
public:
NotebookWidgetsPage(wxNotebook *notebook, wxImageList *imaglist);
NotebookWidgetsPage(wxBookCtrl *book, wxImageList *imaglist);
virtual ~NotebookWidgetsPage();
virtual wxControl *GetWidget() const { return m_notebook; }
@@ -192,9 +192,9 @@ END_EVENT_TABLE()
IMPLEMENT_WIDGETS_PAGE(NotebookWidgetsPage, _T("Notebook"));
NotebookWidgetsPage::NotebookWidgetsPage(wxNotebook *notebook,
NotebookWidgetsPage::NotebookWidgetsPage(wxBookCtrl *book,
wxImageList *imaglist)
: WidgetsPage(notebook)
: WidgetsPage(book)
{
imaglist->Add(wxBitmap(notebook_xpm));