warning fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49887 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Paul Cornett
2007-11-13 04:25:27 +00:00
parent 64bd3204f1
commit ef8dd4a37c
2 changed files with 6 additions and 6 deletions

View File

@@ -15,9 +15,9 @@
#include "wx/dialog.h"
#include "wx/artprov.h"
class WXDLLEXPORT wxListCtrl;
class WXDLLEXPORT wxListEvent;
class WXDLLEXPORT wxStaticBitmap;
class WXDLLIMPEXP_FWD_CORE wxListCtrl;
class WXDLLIMPEXP_FWD_CORE wxListEvent;
class WXDLLIMPEXP_FWD_CORE wxStaticBitmap;
class wxArtBrowserDialog : public wxDialog
{
@@ -30,7 +30,7 @@ public:
private:
void OnSelectItem(wxListEvent &event);
void OnChooseClient(wxCommandEvent &event);
wxListCtrl *m_list;
wxStaticBitmap *m_canvas;
wxStaticText *m_text;

View File

@@ -922,12 +922,12 @@ void MyApp::DoMIMEDemo(wxCommandEvent& WXUNUSED(event))
_T("XyZ %s"),
_T("XyZ -p %s"),
_T("The one and only XYZ format file"),
_T("xyz"), _T("123"), NULL),
_T("xyz"), _T("123"), wxNullPtr),
wxFileTypeInfo(_T("text/html"),
_T("lynx %s"),
_T("lynx -dump %s | lpr"),
_T("HTML document (from fallback)"),
_T("htm"), _T("html"), NULL),
_T("htm"), _T("html"), wxNullPtr),
// must terminate the table with this!
wxFileTypeInfo()