use #include "wx/sizer.h" instead of <wx/sizer.h>

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17935 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-11-22 12:18:25 +00:00
parent 97d5c8bff8
commit a5801aa78e

View File

@@ -37,7 +37,8 @@
#include "wx/stattext.h" #include "wx/stattext.h"
#include "wx/intl.h" #include "wx/intl.h"
#include "wx/textdlg.h" #include "wx/textdlg.h"
#endif #include "wx/sizer.h"
#endif // !WX_PRECOMP
#include "wx/prntbase.h" #include "wx/prntbase.h"
#include "wx/dcprint.h" #include "wx/dcprint.h"
@@ -47,8 +48,6 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <wx/sizer.h>
#ifdef __WXMSW__ #ifdef __WXMSW__
#include "wx/msw/private.h" #include "wx/msw/private.h"
#include <commdlg.h> #include <commdlg.h>
@@ -508,7 +507,6 @@ void wxPreviewControlBar::SetZoomControl(int zoom)
wxChar buf[20]; wxChar buf[20];
wxSprintf( buf, wxT("%d%%"), zoom ); wxSprintf( buf, wxT("%d%%"), zoom );
// Someone is calling methods that do no exist in wxChoice!! So I'll just comment out for VA for now
if (m_zoomControl) if (m_zoomControl)
m_zoomControl->SetStringSelection(buf); m_zoomControl->SetStringSelection(buf);
} }