Update of /cvsroot/mahogany/M/src/classes
In directory usw-pr-cvs1:/tmp/cvs-serv30575/classes
Modified Files:
MObject.cpp
Log Message:
fixed compilation warnings like "long unsigned int format, size_t arg (arg 3)"
Index: MObject.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/classes/MObject.cpp,v
retrieving revision 1.20
retrieving revision 1.21
diff -b -u -2 -r1.20 -r1.21
--- MObject.cpp 3 Jul 2002 17:05:45 -0000 1.20
+++ MObject.cpp 3 Jul 2002 17:31:13 -0000 1.21
@@ -71,5 +71,5 @@
String MObjectRC::DebugDump() const
{
- return MObject::DebugDump() + String::Format(" m_nRef = %lu: ", m_nRef);
+ return MObject::DebugDump() + String::Format(" m_nRef = %lu: ", (unsigned
+long)m_nRef);
}
@@ -106,5 +106,5 @@
if ( this == gs_traceObject )
{
- wxLogTrace("Object %p: IncRef() called, m_nRef = %lu.", this, m_nRef);
+ wxLogTrace("Object %p: IncRef() called, m_nRef = %lu.", this, (unsigned
+long)m_nRef);
}
}
@@ -119,5 +119,5 @@
if ( this == gs_traceObject )
{
- wxLogTrace("Object %p: DecRef() called, m_nRef = %lu.", this, m_nRef);
+ wxLogTrace("Object %p: DecRef() called, m_nRef = %lu.", this, (unsigned
+long)m_nRef);
}
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
No, I will not fix your computer.
http://thinkgeek.com/sf
_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates