|
From: CVS C. to T. <the...@li...> - 2010-10-30 20:04:14
|
Revision: 552
http://themis.svn.sourceforge.net/themis/?rev=552&view=rev
Author: mark_hellegers
Date: 2010-10-30 20:03:58 +0000 (Sat, 30 Oct 2010)
Log Message:
-----------
Minimize the impact of changes to header files.
Modified Paths:
--------------
trunk/themis/framework/ThemisNavView.cpp
trunk/themis/framework/ThemisNavView.h
trunk/themis/framework/ThemisTabView.cpp
trunk/themis/framework/ThemisUrlView.h
trunk/themis/framework/app.cpp
trunk/themis/framework/app.h
trunk/themis/framework/win.cpp
Modified: trunk/themis/framework/ThemisNavView.cpp
===================================================================
--- trunk/themis/framework/ThemisNavView.cpp 2010-10-30 19:59:13 UTC (rev 551)
+++ trunk/themis/framework/ThemisNavView.cpp 2010-10-30 20:03:58 UTC (rev 552)
@@ -12,6 +12,7 @@
// myheaders
#include "ThemisNavView.h"
#include "ThemisIcons.h"
+#include "ThemisUrlView.h"
#include "win.h"
#include "app.h"
#include "../common/commondefs.h"
Modified: trunk/themis/framework/ThemisNavView.h
===================================================================
--- trunk/themis/framework/ThemisNavView.h 2010-10-30 19:59:13 UTC (rev 551)
+++ trunk/themis/framework/ThemisNavView.h 2010-10-30 20:03:58 UTC (rev 552)
@@ -9,9 +9,11 @@
// C/C++ headers
// myheaders
-#include "ThemisUrlView.h"
#include "TPictureButton.h"
+// Declarations used
+class ThemisUrlView;
+
class ThemisNavView : public BView
{
public:
Modified: trunk/themis/framework/ThemisTabView.cpp
===================================================================
--- trunk/themis/framework/ThemisTabView.cpp 2010-10-30 19:59:13 UTC (rev 551)
+++ trunk/themis/framework/ThemisTabView.cpp 2010-10-30 20:03:58 UTC (rev 552)
@@ -18,6 +18,8 @@
#include "ThemisNavView.h" // ThemisPictureButton
#include "app.h"
#include "win.h"
+#include "SiteHandler.h"
+#include "ThemisUrlView.h"
#include "../common/PrefsDefs.h"
ThemisTabView::ThemisTabView(
Modified: trunk/themis/framework/ThemisUrlView.h
===================================================================
--- trunk/themis/framework/ThemisUrlView.h 2010-10-30 19:59:13 UTC (rev 551)
+++ trunk/themis/framework/ThemisUrlView.h 2010-10-30 20:03:58 UTC (rev 552)
@@ -14,6 +14,7 @@
// myheaders
+// Declarations used
class ThemisUrlTextView;
class ThemisUrlView : public BView
Modified: trunk/themis/framework/app.cpp
===================================================================
--- trunk/themis/framework/app.cpp 2010-10-30 19:59:13 UTC (rev 551)
+++ trunk/themis/framework/app.cpp 2010-10-30 20:03:58 UTC (rev 552)
@@ -35,6 +35,8 @@
#include "PrefsDefs.h"
#include "PrefsWin.h"
#include "ThemisTab.h"
+#include "SiteHandler.h"
+#include "ThemisUrlView.h"
#include <Path.h>
using namespace _Themis_Networking_;
Modified: trunk/themis/framework/app.h
===================================================================
--- trunk/themis/framework/app.h 2010-10-30 19:59:13 UTC (rev 551)
+++ trunk/themis/framework/app.h 2010-10-30 20:03:58 UTC (rev 552)
@@ -38,11 +38,11 @@
#include "msgdaemon.h"
#include "plugman.h"
#include "tcpmanager.h"
-#include "SiteHandler.h"
#include "win.h"
// Declarations used
class PrefsWin;
+class SiteHandler;
//! The application framework version number.
#define THEMIS_FRAMEWORK_APP_VERSION 0.40
Modified: trunk/themis/framework/win.cpp
===================================================================
--- trunk/themis/framework/win.cpp 2010-10-30 19:59:13 UTC (rev 551)
+++ trunk/themis/framework/win.cpp 2010-10-30 20:03:58 UTC (rev 552)
@@ -42,6 +42,8 @@
#include "ThemisIcons.h"
#include "ThemisTab.h"
#include "win.h"
+#include "SiteHandler.h"
+#include "ThemisUrlView.h"
#include "../common/commondefs.h"
#include "../common/PrefsDefs.h"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|