]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/object.cpp
only call fsync() on disk files, otherwise we get an error for pipes under Unix
[wxWidgets.git] / src / common / object.cpp
index 31373d34b454e326c2c90fb5d7d682b49101b20d..01708a2a35b4e5ac6e91eb2e1ff0d93864498c1f 100644 (file)
@@ -96,9 +96,7 @@ wxClassInfo *wxObject::GetClassInfo() const
 
 #endif // wxUSE_EXTENDED_RTTI
 
-// These are here so we can avoid 'always true/false' warnings
-// by referring to these instead of true/false
-const bool wxTrue = true;
+// this variable exists only so that we can avoid 'always true/false' warnings
 const bool wxFalse = false;
 
 // Is this object a kind of (a subclass of) 'info'?
@@ -238,7 +236,7 @@ void wxClassInfo::Register()
     wxASSERT_MSG( sm_classTable->Get(m_className) == NULL,
         wxString::Format
         (
-            _T("Class \"%s\" already in RTTI table - have you used IMPLEMENT_DYNAMIC_CLASS() twice (may be by linking some objecti module(s) twice)?"),
+            _T("Class \"%s\" already in RTTI table - have you used IMPLEMENT_DYNAMIC_CLASS() multiple times or linked some object file twice)?"),
             m_className
         )
     );