projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
escape underscores and don't use abbreviations in text
[wxWidgets.git]
/
src
/
common
/
object.cpp
diff --git
a/src/common/object.cpp
b/src/common/object.cpp
index 31373d34b454e326c2c90fb5d7d682b49101b20d..f43f2b2d99c0beb17026d0017b35a5fb277cc8c3 100644
(file)
--- a/
src/common/object.cpp
+++ b/
src/common/object.cpp
@@
-10,10
+10,6
@@
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma implementation "object.h"
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
@@
-96,9
+92,7
@@
wxClassInfo *wxObject::GetClassInfo() const
#endif // wxUSE_EXTENDED_RTTI
#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'?
const bool wxFalse = false;
// Is this object a kind of (a subclass of) 'info'?
@@
-238,7
+232,7
@@
void wxClassInfo::Register()
wxASSERT_MSG( sm_classTable->Get(m_className) == NULL,
wxString::Format
(
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
)
);
m_className
)
);