]> git.saurik.com Git - wxWidgets.git/commitdiff
Don't use precompiled header directives in included files
authorJulian Smart <julian@anthemion.co.uk>
Mon, 9 Oct 2006 17:10:58 +0000 (17:10 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Mon, 9 Oct 2006 17:10:58 +0000 (17:10 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41816 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/richtext/richtextbulletspage.cpp
src/richtext/richtextfontpage.cpp
src/richtext/richtextindentspage.cpp
src/richtext/richtextstylepage.cpp
src/richtext/richtexttabspage.cpp

index 632fd213ecc5e2a56b81cbe5dcd0b585fc7e450a..e71094592f4cb440cb5c856c8ed083e532265497 100644 (file)
@@ -9,20 +9,10 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-// For compilers that support precompilation, includes "wx/wx.h".
-#include "wx/wxprec.h"
-
-#ifdef __BORLANDC__
-    #pragma hdrstop
-#endif
-
 #if wxUSE_RICHTEXT
 
 #include "wx/richtext/richtextbulletspage.h"
 
-#ifndef WX_PRECOMP
-#endif
-
 #include "wx/richtext/richtextsymboldlg.h"
 #include "wx/fontenum.h"
 
@@ -90,7 +80,7 @@ wxRichTextBulletsPage::wxRichTextBulletsPage( wxWindow* parent, wxWindowID id, c
 /*!
  * Initialise members
  */
+
 void wxRichTextBulletsPage::Init()
 {
     m_hasBulletStyle = false;
@@ -252,12 +242,12 @@ void wxRichTextBulletsPage::CreateControls()
     m_symbolCtrl->Append(_(">"));
     m_symbolCtrl->Append(_("+"));
     m_symbolCtrl->Append(_("~"));
-    
+
     wxFontEnumerator enumerator;
     enumerator.EnumerateFacenames();
     wxArrayString facenames = enumerator.GetFacenames();
     facenames.Sort();
-    
+
     m_symbolFontCtrl->Append(facenames);
 }
 
@@ -347,7 +337,7 @@ bool wxRichTextBulletsPage::TransferDataToWindow()
         if (attr->GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_PERIOD)
             m_periodCtrl->SetValue(true);
         else
-            m_periodCtrl->SetValue(false);        
+            m_periodCtrl->SetValue(false);
     }
     else
         m_styleListBox->SetSelection(-1);
@@ -625,10 +615,10 @@ void wxRichTextBulletsPage::OnChooseSymbolClick( wxCommandEvent& WXUNUSED(event)
         if (dlg.ShowModal() == wxID_OK)
         {
             m_dontUpdate = true;
-            
+
             m_symbolCtrl->SetValue(dlg.GetSymbol());
             m_symbolFontCtrl->SetValue(dlg.GetFontName());
-            
+
             UpdatePreview();
 
             m_dontUpdate = false;
index 316b599b2a9876175f3380246d7469bb25cffed7..4e94e39fd2cc1145d4da3cd5e01eec86846cba6d 100644 (file)
@@ -9,14 +9,8 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-////@begin includes
-////@end includes
-
 #include "../../include/wx/richtext/richtextfontpage.h"
 
-////@begin XPM images
-////@end XPM images
-
 /*!
  * wxRichTextFontPage type definition
  */
@@ -66,7 +60,7 @@ wxRichTextFontPage::wxRichTextFontPage( wxWindow* parent, wxWindowID id, const w
 /*!
  * Initialise members
  */
+
 void wxRichTextFontPage::Init()
 {
     m_dontUpdate = false;
index 39910835fe83c12495ba5809cd37334b6f555f83..6401bf4b149419c266892d21a9360cf53313681a 100644 (file)
@@ -9,20 +9,10 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-// For compilers that support precompilation, includes "wx/wx.h".
-#include "wx/wxprec.h"
-
-#ifdef __BORLANDC__
-    #pragma hdrstop
-#endif
-
 #if wxUSE_RICHTEXT
 
 #include "wx/richtext/richtextindentspage.h"
 
-#ifndef WX_PRECOMP
-#endif
-
 /*!
  * wxRichTextIndentsSpacingPage type definition
  */
@@ -80,7 +70,7 @@ wxRichTextIndentsSpacingPage::wxRichTextIndentsSpacingPage( wxWindow* parent, wx
 /*!
  * Initialise members
  */
+
 void wxRichTextIndentsSpacingPage::Init()
 {
     m_dontUpdate = false;
index ab55e26708edcce86a724eb4452c303c514a240a..bc1caa440f4e0ce03050294ff1df3d3f662e9101 100644 (file)
@@ -1,28 +1,18 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        src/richtext/richtextstylepage.cpp
-// Purpose:     
+// Purpose:
 // Author:      Julian Smart
-// Modified by: 
+// Modified by:
 // Created:     10/5/2006 11:34:55 AM
 // RCS-ID:      $Id$
 // Copyright:   (c) Julian Smart
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-// For compilers that support precompilation, includes "wx/wx.h".
-#include "wx/wxprec.h"
-
-#ifdef __BORLANDC__
-    #pragma hdrstop
-#endif
-
 #if wxUSE_RICHTEXT
 
 #include "wx/richtext/richtextstylepage.h"
 
-#ifndef WX_PRECOMP
-#endif
-
 /*!
  * wxRichTextStylePage type definition
  */
@@ -60,7 +50,7 @@ wxRichTextStylePage::wxRichTextStylePage( wxWindow* parent, wxWindowID id, const
 /*!
  * Initialise members
  */
+
 void wxRichTextStylePage::Init()
 {
 ////@begin wxRichTextStylePage member initialisation
@@ -94,7 +84,7 @@ bool wxRichTextStylePage::Create( wxWindow* parent, wxWindowID id, const wxPoint
  */
 
 void wxRichTextStylePage::CreateControls()
-{    
+{
 ////@begin wxRichTextStylePage content construction
     wxRichTextStylePage* itemPanel1 = this;
 
@@ -197,7 +187,7 @@ bool wxRichTextStylePage::TransferDataToWindow()
         }
         m_nextStyle->SetValue(paraDef->GetNextStyle());
     }
-    
+
     if (m_basedOn->GetCount() == 0)
     {
         if (sheet)
@@ -224,7 +214,7 @@ bool wxRichTextStylePage::TransferDataToWindow()
             }
         }
     }
-    
+
     m_basedOn->SetValue(def->GetBaseStyle());
 
     return true;
index f26a8dde2b26d37c2ecf0d7a54bd7a5766b9ed2d..9c7c68ca76340f077781a07fd8997888603d4a4f 100644 (file)
@@ -9,20 +9,10 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-// For compilers that support precompilation, includes "wx/wx.h".
-#include "wx/wxprec.h"
-
-#ifdef __BORLANDC__
-    #pragma hdrstop
-#endif
-
 #if wxUSE_RICHTEXT
 
 #include "wx/richtext/richtexttabspage.h"
 
-#ifndef WX_PRECOMP
-#endif
-
 /*!
  * wxRichTextTabsPage type definition
  */
@@ -69,7 +59,7 @@ wxRichTextTabsPage::wxRichTextTabsPage( wxWindow* parent, wxWindowID id, const w
 /*!
  * Initialise members
  */
+
 void wxRichTextTabsPage::Init()
 {
     m_tabsPresent = false;