]> git.saurik.com Git - wxWidgets.git/commitdiff
no changes, just de-TAB-bed
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 30 Aug 2008 22:01:20 +0000 (22:01 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 30 Aug 2008 22:01:20 +0000 (22:01 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55385 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/html/webkit.h
include/wx/msgdlg.h
include/wx/os2/dc.h
include/wx/os2/metafile.h
include/wx/os2/tls.h
include/wx/osx/carbon/dcclient.h
include/wx/osx/carbon/private/mactext.h
include/wx/osx/carbon/textctrl.h
include/wx/platform.h
include/wx/vms_x_fix.h

index 7abc5809d2eed13b35eabe856ef72b9e5cd967ce..cff0e53ebe5741ade36cba49d42fda5422885930 100644 (file)
@@ -60,9 +60,9 @@ public:
     bool CanGetPageSource();
     wxString GetPageSource();
     void SetPageSource(const wxString& source, const wxString& baseUrl = wxEmptyString);
-       wxString GetPageURL(){ return m_currentURL; }
+    wxString GetPageURL(){ return m_currentURL; }
     void SetPageTitle(const wxString& title) { m_pageTitle = title; }
-       wxString GetPageTitle(){ return m_pageTitle; }
+    wxString GetPageTitle(){ return m_pageTitle; }
 
     // since these worked in 2.6, add wrappers
     void SetTitle(const wxString& title) { SetPageTitle(title); }
index 3a0174e8fb4e71fca750f78046be8eba90c2915f..73339b2349e8268d4b3b0bfc3c90ed8c42c55d88 100644 (file)
@@ -116,7 +116,7 @@ protected:
 
     #define wxMessageDialog wxGenericMessageDialog
 #elif defined(__WXCOCOA__)
-       #include "wx/cocoa/msgdlg.h"
+    #include "wx/cocoa/msgdlg.h"
 #elif defined(__WXPALMOS__)
     #include "wx/palmos/msgdlg.h"
 #elif defined(__WXMSW__)
index d8ced433d84b47517d4df804ae1ee01cad7e67c6..aff30c67eae09e5113c0fa16ac12abe8b274129e 100644 (file)
@@ -196,23 +196,23 @@ public:
 protected:
     void Init()
     {
-       m_pCanvas      = NULL;
-       m_hOldBitmap   = 0;
-       m_hOldPen      = 0;
-       m_hOldBrush    = 0;
-       m_hOldFont     = 0;
+        m_pCanvas      = NULL;
+        m_hOldBitmap   = 0;
+        m_hOldPen      = 0;
+        m_hOldBrush    = 0;
+        m_hOldFont     = 0;
 #if wxUSE_PALETTE
         m_hOldPalette  = 0;
 #endif // wxUSE_PALETTE
 
-       m_bOwnsDC      = false;
-       m_hDC          = 0;
-       m_hOldPS       = NULL;
-       m_hPS          = NULL;
-       m_bIsPaintTime = false; // True at Paint Time
+        m_bOwnsDC      = false;
+        m_hDC          = 0;
+        m_hOldPS       = NULL;
+        m_hPS          = NULL;
+        m_bIsPaintTime = false; // True at Paint Time
 
-       m_pen.SetColour(*wxBLACK);
-       m_brush.SetColour(*wxWHITE);
+        m_pen.SetColour(*wxBLACK);
+        m_brush.SetColour(*wxWHITE);
     }
 
     // create an uninitialized DC: this should be only used by the derived
index 4e39e32276f003fc7a20fe2e3cfb614149e7a6cb..ac5f7c62673bcd8b952f074d2a22e1b3fb8ffe67 100644 (file)
@@ -118,10 +118,10 @@ public:
     // Supply origin and extent (recommended).
     // Then don't need to supply them to wxMakeMetaFilePlaceable.
     wxMetafileDC(const wxString& file, int xext, int yext, int xorg, int yorg)
-        : wxDC(new wxMetafileDCImpl( this, file, xext, yext, xorg, yorg ))
+        : wxDC(new wxMetafileDCImpl( this, file, xext, yext, xorg, yorg ))
          { }
 
-    wxMetafile *GetMetafile() const 
+    wxMetafile *GetMetafile() const
         { return ((wxMetafileDCImpl*)m_pimpl)->GetMetaFile(); }
 
     virtual ~wxMetafileDC(void)
index adbfadc4091c582428e6c50ca61d0df5670f1ae9..a70d6aa7dfe18724cd42c640a7a4bcfd18126e5c 100644 (file)
@@ -24,8 +24,8 @@ public:
     wxTlsKey()
     {
         APIRET rc = ::DosAllocThreadLocalMemory(1, &m_slot);
-       if (rc != NO_ERROR)
-           m_slot = NULL;
+        if (rc != NO_ERROR)
+            m_slot = NULL;
     }
 
     // return true if the key was successfully allocated
@@ -41,7 +41,7 @@ public:
     bool Set(void *value)
     {
         m_slot = (ULONG*)value;
-       return true;
+        return true;
     }
 
     // free the key
index fa518275f1080b082fac8c6baf27826e5ce6e0b2..3c677f99ad316604e43cf4d9199f3696e6a1d352 100644 (file)
@@ -28,14 +28,14 @@ public:
     wxWindowDCImpl( wxDC *owner );
     wxWindowDCImpl( wxDC *owner, wxWindow *window );
     virtual ~wxWindowDCImpl();
-    
+
     virtual void DoGetSize( int *width, int *height ) const;
-    virtual wxBitmap DoGetAsBitmap(const wxRect *subrect) const; 
+    virtual wxBitmap DoGetAsBitmap(const wxRect *subrect) const;
 
 protected:
     bool m_release;
-    int         m_width;
-    int         m_height;
+    int m_width;
+    int m_height;
 
     DECLARE_CLASS(wxWindowDCImpl)
     DECLARE_NO_COPY_CLASS(wxWindowDCImpl)
@@ -48,7 +48,7 @@ public:
     wxClientDCImpl( wxDC *owner );
     wxClientDCImpl( wxDC *owner, wxWindow *window );
     virtual ~wxClientDCImpl();
-    
+
 private:
     DECLARE_CLASS(wxClientDCImpl)
     DECLARE_NO_COPY_CLASS(wxClientDCImpl)
index a5041087c75755834cba8dcd61a7d10a58c5295f..133371f16c4f526c7f66e43e1f3b8c183278661c 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      Stefan Csomor
 // Modified by:
 // Created:     03/02/99
-// RCS-ID:      $Id: 
+// RCS-ID:      $Id:
 // Copyright:   (c) Stefan Csomor
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -58,8 +58,8 @@ public :
     virtual int GetLineLength(long lineNo) const ;
     virtual wxString GetLineText(long lineNo) const ;
     virtual void CheckSpelling(bool WXUNUSED(check)) { }
-    virtual void SetFont( const wxFont & font , const wxColour& foreground , long windowStyle );    
-} ;
+    virtual void SetFont( const wxFont & font , const wxColour& foreground , long windowStyle );
+};
 
 class wxMacUnicodeTextControl : public wxMacTextControl
 {
@@ -88,7 +88,7 @@ public :
     virtual void WriteText(const wxString& str) ;
 
 protected :
-       virtual void CreateControl( wxTextCtrl* peer, const Rect* bounds, CFStringRef cfr );
+    virtual void CreateControl( wxTextCtrl* peer, const Rect* bounds, CFStringRef cfr );
 
     // contains the tag for the content (is different for password and non-password controls)
     OSType m_valueTag ;
index a2a3eb5e7d1ab9b807486fed6a6a8742192b2fef..760bc44178958d3dfb62f06a751b1620f8105129 100644 (file)
@@ -180,7 +180,7 @@ protected:
     virtual wxSize DoGetBestSize() const;
 
     virtual void CreatePeer(const wxString& str, const wxPoint& pos, const wxSize& size, long style );
-       
+
     virtual void DoSetValue(const wxString& value, int flags = 0);
 
     bool  m_editable;
index 8c7faf3b322e9c8932b68762847be4b3264e6073..86b09ff0c2cb77822b453b6c4eec19127f22b4d6 100644 (file)
@@ -52,8 +52,8 @@
 #   elif defined(TARGET_OS_MAC) && TARGET_OS_MAC
 #       undef __WXOSX_IPHONE__
 #       define __WXOSX_MAC__
-#      else
-#              error "unknown SDK, neither TARGET_OS_MAC nor TARGET_OS_IPHONE set in <TargetConditionals.h>"
+#   else
+#       error "unknown SDK, neither TARGET_OS_MAC nor TARGET_OS_IPHONE set in <TargetConditionals.h>"
 #   endif
 #endif
 
index 7abe9308169d31ed87dcfdfc240c0a3a3c2f448a..9b8998448da13301ebd676fbed5368c06337c203 100644 (file)
 #if (__VMS_VER < 80200000) 
 # define SetReqLen(req,n,badlen) \
     if ((req->length + n) > (unsigned)65535) { \
-           n = badlen; \
-           req->length += n; \
+        n = badlen; \
+        req->length += n; \
     } else \
-       req->length += n
+    req->length += n
 #endif
 
 #ifdef __cplusplus