From: Stefan Neis Date: Sun, 8 Sep 2002 10:51:49 +0000 (+0000) Subject: Added missing includes for non-precompiled headers. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1a75e76f399bc91b3f841e7f77140e83f9bd5958 Added missing includes for non-precompiled headers. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17078 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/os2/button.cpp b/src/os2/button.cpp index 4475844729..61b0d68fa4 100644 --- a/src/os2/button.cpp +++ b/src/os2/button.cpp @@ -13,6 +13,7 @@ #include "wx/wxprec.h" #ifndef WX_PRECOMP + #include "wx/app.h" #include "wx/button.h" #include "wx/brush.h" #include "wx/panel.h" diff --git a/src/os2/checklst.cpp b/src/os2/checklst.cpp index 5f6282c54e..0a5befdb84 100644 --- a/src/os2/checklst.cpp +++ b/src/os2/checklst.cpp @@ -27,6 +27,7 @@ #include "wx/ownerdrw.h" #include "wx/settings.h" #include "wx/dcmemory.h" +#include "wx/dcscreen.h" #include "wx/os2/checklst.h" #include "wx/log.h" diff --git a/src/os2/cursor.cpp b/src/os2/cursor.cpp index be4238b9b2..73a793577c 100644 --- a/src/os2/cursor.cpp +++ b/src/os2/cursor.cpp @@ -20,6 +20,7 @@ #include "wx/app.h" #include "wx/cursor.h" #include "wx/icon.h" +#include "wx/resource.h" #endif #include "wx/os2/private.h" diff --git a/src/os2/listbox.cpp b/src/os2/listbox.cpp index 9f9f1de5d2..5714ca119c 100644 --- a/src/os2/listbox.cpp +++ b/src/os2/listbox.cpp @@ -21,6 +21,7 @@ #include "wx/brush.h" #include "wx/font.h" #include "wx/dc.h" +#include "wx/dcscreen.h" #include "wx/utils.h" #include "wx/scrolwin.h" #endif diff --git a/src/os2/notebook.cpp b/src/os2/notebook.cpp index 0f0339aa14..dbf582f6d4 100644 --- a/src/os2/notebook.cpp +++ b/src/os2/notebook.cpp @@ -16,7 +16,9 @@ // wxWindows #ifndef WX_PRECOMP - #include "wx/string.h" + #include "wx/app.h" + #include "wx/string.h" + #include "wx/settings.h" #endif // WX_PRECOMP #include "wx/log.h" diff --git a/src/os2/window.cpp b/src/os2/window.cpp index f17d44952a..6382bbee26 100644 --- a/src/os2/window.cpp +++ b/src/os2/window.cpp @@ -27,6 +27,8 @@ #include "wx/app.h" #include "wx/panel.h" #include "wx/layout.h" + #include "wx/checkbox.h" + #include "wx/combobox.h" #include "wx/dialog.h" #include "wx/frame.h" #include "wx/listbox.h" @@ -34,6 +36,7 @@ #include "wx/msgdlg.h" #include "wx/scrolwin.h" #include "wx/radiobox.h" + #include "wx/radiobut.h" #include "wx/slider.h" #include "wx/statbox.h" #include "wx/statusbr.h"