]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/object.h
wxTheApp can't be assigned to any longer
[wxWidgets.git] / include / wx / object.h
index 280292cb544d3f4786047a35d8fa7b9811e684c5..bbc627fe60bc9aa7f8d81a6159459a822ed3f10d 100644 (file)
@@ -28,14 +28,12 @@ class WXDLLIMPEXP_BASE wxObject;
 
 #if wxUSE_DYNAMIC_CLASSES
 
-#ifndef wxUSE_EXTENDED_RTTI 
+#ifndef wxUSE_EXTENDED_RTTI
 #define wxUSE_EXTENDED_RTTI 0
 #endif
 
 #if wxUSE_EXTENDED_RTTI
-
 #include "wx/xti.h"
-
 #else
 
 // ----------------------------------------------------------------------------
@@ -418,16 +416,16 @@ class WXDLLIMPEXP_BASE wxObject
 
 private:
     void InitFrom(const wxObject& other);
-    
+
 public:
     wxObject() { m_refData = NULL; }
     virtual ~wxObject() { UnRef(); }
-    
+
     wxObject(const wxObject& other)
         {
             InitFrom(other);
         }
-    
+
     wxObject& operator=(const wxObject& other)
     {
         if ( this != &other )