Update of /cvsroot/mahogany/M/src/modules
In directory sc8-pr-cvs1:/tmp/cvs-serv29729/src/modules
Modified Files:
BareBonesEditor.cpp Calendar.cpp Filters.cpp HtmlViewer.cpp
LayoutEditor.cpp LayoutViewer.cpp Mdummy.cpp Migrate.cpp
NetscapeImporter.cpp PalmOS.cpp PineImport.cpp TextViewer.cpp
XFMailImport.cpp
Log Message:
Include dependencies cleanup, stage two (final so far)
Index: BareBonesEditor.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/modules/BareBonesEditor.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -b -u -2 -r1.11 -r1.12
--- BareBonesEditor.cpp 16 Sep 2003 21:32:45 -0000 1.11
+++ BareBonesEditor.cpp 18 Sep 2003 16:31:00 -0000 1.12
@@ -24,12 +24,21 @@
#ifndef USE_PCH
# include "Mcommon.h"
+# include "strutil.h"
+# include "Mdefaults.h"
# include <wx/sizer.h>
+# include <wx/textctrl.h>
+# include <wx/button.h> // for wxButton
#endif // USE_PCH
-#include <wx/imaglist.h>
+#include <wx/imaglist.h> // for wxImageList
+#include <wx/notebook.h>
+#include <wx/listctrl.h> // for wxListEvent
#include "Composer.h"
#include "MessageEditor.h"
+#include "gui/wxMDialogs.h"
+
+class WXDLLEXPORT wxListCtrl;
// ----------------------------------------------------------------------------
Index: Calendar.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/modules/Calendar.cpp,v
retrieving revision 1.43
retrieving revision 1.44
diff -b -u -2 -r1.43 -r1.44
--- Calendar.cpp 15 Sep 2003 17:01:40 -0000 1.43
+++ Calendar.cpp 18 Sep 2003 16:31:01 -0000 1.44
@@ -15,11 +15,12 @@
#ifndef USE_PCH
# include "Mcommon.h"
+# include "MHelp.h"
-# include <wx/stattext.h>
# include <wx/layout.h>
# include <wx/menu.h>
# include <wx/statusbr.h>
# include <wx/statbox.h>
-#endif
+# include <wx/textdlg.h>
+#endif // USE_PCH
#include "modules/Calendar.h"
@@ -35,7 +36,4 @@
#include <wx/calctrl.h>
#include <wx/spinbutt.h>
-#include <wx/textdlg.h>
-
-#include "MHelp.h"
#if wxUSE_DRAG_AND_DROP
Index: Filters.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/modules/Filters.cpp,v
retrieving revision 1.151
retrieving revision 1.152
diff -b -u -2 -r1.151 -r1.152
--- Filters.cpp 16 Sep 2003 21:32:11 -0000 1.151
+++ Filters.cpp 18 Sep 2003 16:31:01 -0000 1.152
@@ -35,10 +35,12 @@
#ifndef USE_PCH
# include "Mcommon.h"
-#endif
+#endif // USE_PCH
#include "modules/Filters.h"
#include "MFilterLang.h"
+#include "MInterface.h"
#include "UIdArray.h"
+#include "Message.h"
#include <wx/regex.h> // wxRegEx::Flags
Index: HtmlViewer.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/modules/HtmlViewer.cpp,v
retrieving revision 1.50
retrieving revision 1.51
diff -b -u -2 -r1.50 -r1.51
--- HtmlViewer.cpp 16 Sep 2003 21:32:45 -0000 1.50
+++ HtmlViewer.cpp 18 Sep 2003 16:31:01 -0000 1.51
@@ -25,16 +25,19 @@
# include "Mcommon.h"
+# include "Mdefaults.h"
# include "gui/wxMApp.h"
#endif // USE_PCH
#include "MessageViewer.h"
+#include "gui/wxMenuDefs.h"
#include "ClickURL.h"
+#include "MTextStyle.h"
#include <wx/fontmap.h>
#include <wx/fs_mem.h>
-#include <wx/html/htmlwin.h>
-#include <wx/html/htmprint.h>
-#include <wx/html/m_templ.h>
+#include <wx/html/htmlwin.h> // for wxHtmlWindow
+#include <wx/html/htmprint.h> // for wxHtmlEasyPrinting
+#include <wx/html/m_templ.h> // for TAG_HANDLER_BEGIN
class HtmlViewerWindow;
Index: LayoutEditor.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/modules/LayoutEditor.cpp,v
retrieving revision 1.15
retrieving revision 1.16
diff -b -u -2 -r1.15 -r1.16
--- LayoutEditor.cpp 15 Sep 2003 17:01:41 -0000 1.15
+++ LayoutEditor.cpp 18 Sep 2003 16:31:02 -0000 1.16
@@ -26,4 +26,5 @@
#ifndef USE_PCH
# include "Mcommon.h"
+# include "Mdefaults.h"
#endif // USE_PCH
Index: LayoutViewer.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/modules/LayoutViewer.cpp,v
retrieving revision 1.31
retrieving revision 1.32
diff -b -u -2 -r1.31 -r1.32
--- LayoutViewer.cpp 15 Sep 2003 17:01:41 -0000 1.31
+++ LayoutViewer.cpp 18 Sep 2003 16:31:02 -0000 1.32
@@ -26,8 +26,12 @@
#ifndef USE_PCH
# include "Mcommon.h"
+# include "Mdefaults.h"
#endif // USE_PCH
#include "MessageViewer.h"
+#include "gui/wxMenuDefs.h"
#include "ClickURL.h"
+#include "MTextStyle.h"
+#include "gui/wxMDialogs.h"
#include "gui/wxlwindow.h"
Index: Mdummy.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/modules/Mdummy.cpp,v
retrieving revision 1.30
retrieving revision 1.31
diff -b -u -2 -r1.30 -r1.31
--- Mdummy.cpp 15 Sep 2003 17:01:41 -0000 1.30
+++ Mdummy.cpp 18 Sep 2003 16:31:02 -0000 1.31
@@ -15,7 +15,8 @@
#ifndef USE_PCH
# include "Mcommon.h"
-#endif
+#endif // USE_PCH
#include "MModule.h"
+#include "MInterface.h"
///------------------------------
Index: Migrate.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/modules/Migrate.cpp,v
retrieving revision 1.17
retrieving revision 1.18
diff -b -u -2 -r1.17 -r1.18
--- Migrate.cpp 15 Sep 2003 17:01:41 -0000 1.17
+++ Migrate.cpp 18 Sep 2003 16:31:02 -0000 1.18
@@ -38,5 +38,5 @@
#include <wx/gauge.h>
#include <wx/radiobut.h>
- #include <wx/stattext.h>
+ #include <wx/stattext.h> // for wxStaticText
#include <wx/msgdlg.h>
@@ -44,4 +44,5 @@
#include "MModule.h"
+#include "MInterface.h"
#include "ListReceiver.h"
Index: NetscapeImporter.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/modules/NetscapeImporter.cpp,v
retrieving revision 1.15
retrieving revision 1.16
diff -b -u -2 -r1.15 -r1.16
--- NetscapeImporter.cpp 15 Sep 2003 17:01:41 -0000 1.15
+++ NetscapeImporter.cpp 18 Sep 2003 16:31:02 -0000 1.16
@@ -32,12 +32,18 @@
#ifndef USE_PCH
#include "Mcommon.h"
+ #include "Mdefaults.h"
+ #include "MApplication.h"
- #include <wx/textfile.h>
+ #include <wx/hash.h>
#endif // USE_PCH
#include <wx/dir.h>
#include <wx/tokenzr.h>
+#include <wx/confbase.h>
+#include <wx/textfile.h>
#include "MImport.h"
+#include "MFolder.h"
+#include "MEvent.h"
// ----------------------------------------------------------------------------
Index: PalmOS.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/modules/PalmOS.cpp,v
retrieving revision 1.117
retrieving revision 1.118
diff -b -u -2 -r1.117 -r1.118
--- PalmOS.cpp 8 Sep 2002 19:23:12 -0000 1.117
+++ PalmOS.cpp 18 Sep 2003 16:31:02 -0000 1.118
@@ -36,15 +36,17 @@
#ifndef USE_PCH
-# include "Mconfig.h"
# include "Mcommon.h"
-# include "MDialogs.h"
# include "strutil.h"
# include "Mdefaults.h"
-# include "gui/wxMenuDefs.h"
-# include "MMainFrame.h"
-# include "HeaderInfo.h"
# include "wx/stattext.h"
-#endif
+# include <wx/menu.h>
+# include <wx/log.h>
+#endif // USE_PCH
+
+#include "MDialogs.h"
+#include "gui/wxMenuDefs.h"
+#include "MMainFrame.h"
+#include "HeaderInfo.h"
// we can't compile an empty library as it was done before as then you get
@@ -84,6 +86,4 @@
#include "gui/wxMDialogs.h"
-#include <wx/menu.h>
-
#include "adb/AdbManager.h"
#include "adb/ProvPalm.h"
@@ -184,5 +184,4 @@
#include <utime.h>
-#include <wx/log.h>
#include <wx/textfile.h>
Index: PineImport.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/modules/PineImport.cpp,v
retrieving revision 1.12
retrieving revision 1.13
diff -b -u -2 -r1.12 -r1.13
--- PineImport.cpp 15 Sep 2003 17:01:41 -0000 1.12
+++ PineImport.cpp 18 Sep 2003 16:31:02 -0000 1.13
@@ -25,11 +25,16 @@
#ifndef USE_PCH
#include "Mcommon.h"
+ #include "Mdefaults.h"
+ #include "MApplication.h"
#endif // USE_PCH
#include <wx/textfile.h>
#include <wx/dir.h>
+#include <wx/confbase.h>
#include "adb/AdbImport.h"
#include "adb/AdbImpExp.h"
+#include "MFolder.h"
+#include "MEvent.h"
#include "MImport.h"
Index: TextViewer.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/modules/TextViewer.cpp,v
retrieving revision 1.47
retrieving revision 1.48
diff -b -u -2 -r1.47 -r1.48
--- TextViewer.cpp 15 Sep 2003 17:01:41 -0000 1.47
+++ TextViewer.cpp 18 Sep 2003 16:31:02 -0000 1.48
@@ -24,9 +24,13 @@
# include "Mcommon.h"
-# include <wx/textbuf.h>
+# include <wx/textctrl.h>
#endif // USE_PCH
+#include "gui/wxMenuDefs.h"
#include "MessageViewer.h"
#include "ClickURL.h"
+#include "MTextStyle.h"
+
+#include <wx/textbuf.h>
class TextViewerWindow;
Index: XFMailImport.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/modules/XFMailImport.cpp,v
retrieving revision 1.23
retrieving revision 1.24
diff -b -u -2 -r1.23 -r1.24
--- XFMailImport.cpp 15 Sep 2003 17:01:41 -0000 1.23
+++ XFMailImport.cpp 18 Sep 2003 16:31:02 -0000 1.24
@@ -23,10 +23,12 @@
#ifndef USE_PCH
#include "Mcommon.h"
-
- #include <wx/textfile.h>
+ #include "Mdefaults.h"
+ #include "MApplication.h"
#endif // USE_PCH
#include <wx/dir.h>
#include <wx/tokenzr.h>
+#include <wx/confbase.h>
+#include <wx/textfile.h>
#include "adb/AdbImport.h"
@@ -34,4 +36,6 @@
#include "MImport.h"
#include "MFilter.h"
+#include "Message.h"
+#include "MFolder.h"
// ----------------------------------------------------------------------------
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates