projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Declarations missing from VC++ 5
[wxWidgets.git]
/
src
/
x11
/
dataobj.cpp
diff --git
a/src/x11/dataobj.cpp
b/src/x11/dataobj.cpp
index c32748372eb3d0f908186e76a9f591951411f984..1f2d5aaf0990a8bb7238a6934d7a239f5976475a 100644
(file)
--- a/
src/x11/dataobj.cpp
+++ b/
src/x11/dataobj.cpp
@@
-17,12
+17,12
@@
#ifndef WX_PRECOMP
#include "wx/log.h"
#include "wx/app.h"
#ifndef WX_PRECOMP
#include "wx/log.h"
#include "wx/app.h"
+ #include "wx/utils.h"
+ #include "wx/image.h"
#endif
#include "wx/mstream.h"
#endif
#include "wx/mstream.h"
-#include "wx/image.h"
-#include "wx/utils.h"
#include "wx/x11/private.h"
//-------------------------------------------------------------------------
#include "wx/x11/private.h"
//-------------------------------------------------------------------------
@@
-199,7
+199,7
@@
bool wxFileDataObject::GetDataHere(void *buf) const
filenames += (wxChar) 0;
}
filenames += (wxChar) 0;
}
- memcpy( buf, filenames.mbc_str(), filenames.
Len
() + 1 );
+ memcpy( buf, filenames.mbc_str(), filenames.
length
() + 1 );
return true;
}
return true;
}
@@
-210,7
+210,7
@@
size_t wxFileDataObject::GetDataSize() const
for (size_t i = 0; i < m_filenames.GetCount(); i++)
{
for (size_t i = 0; i < m_filenames.GetCount(); i++)
{
- res += m_filenames[i].
Len
();
+ res += m_filenames[i].
length
();
res += 1;
}
res += 1;
}
@@
-232,8
+232,8
@@
bool wxFileDataObject::SetData(size_t WXUNUSED(size), const void *buf)
break;
wxString file( filenames ); // this returns the first file
AddFile( file );
break;
wxString file( filenames ); // this returns the first file
AddFile( file );
- pos += file.
Len
()+1;
- filenames += file.
Len
()+1;
+ pos += file.
length
()+1;
+ filenames += file.
length
()+1;
}
#else // 1
m_filenames.Empty();
}
#else // 1
m_filenames.Empty();