projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
removed incorrect param from docs
[wxWidgets.git]
/
src
/
motif
/
dnd.cpp
diff --git
a/src/motif/dnd.cpp
b/src/motif/dnd.cpp
index 618c3e46f3aec351c2f6535603a689ae8943df35..e9e57e42f8891de0ccd5fdfa8250be45338c8cc2 100644
(file)
--- a/
src/motif/dnd.cpp
+++ b/
src/motif/dnd.cpp
@@
-76,7
+76,8
@@
bool wxFileDropTarget::OnDropFiles( long x, long y, size_t nFiles, const char *
{
wxLogDebug( "Got %d dropped files.", (int)nFiles );
wxLogDebug( "At x: %d, y: %d.", (int)x, (int)y );
{
wxLogDebug( "Got %d dropped files.", (int)nFiles );
wxLogDebug( "At x: %d, y: %d.", (int)x, (int)y );
- for (size_t i = 0; i < nFiles; i++)
+ size_t i;
+ for (i = 0; i < nFiles; i++)
{
wxLogDebug( aszFiles[i] );
}
{
wxLogDebug( aszFiles[i] );
}
@@
-87,7
+88,8
@@
bool wxFileDropTarget::OnDrop(long x, long y, const void *data, size_t size )
{
size_t number = 0;
char *text = (char*) data;
{
size_t number = 0;
char *text = (char*) data;
- for (size_t i = 0; i < size; i++)
+ size_t i;
+ for (i = 0; i < size; i++)
if (text[i] == 0) number++;
if (number == 0) return TRUE;
if (text[i] == 0) number++;
if (number == 0) return TRUE;
@@
-95,7
+97,7
@@
bool wxFileDropTarget::OnDrop(long x, long y, const void *data, size_t size )
char **files = new char*[number];
text = (char*) data;
char **files = new char*[number];
text = (char*) data;
- for (
size_t
i = 0; i < number; i++)
+ for ( i = 0; i < number; i++)
{
files[i] = text;
int len = strlen( text );
{
files[i] = text;
int len = strlen( text );
@@
-217,6
+219,20
@@
void wxDropSource::UnregisterWindow(void)
}
#endif
}
#endif
+wxPrivateDropTarget::wxPrivateDropTarget()
+{
+ m_id = wxTheApp->GetAppName();
+}
+
+size_t wxPrivateDropTarget::GetFormatCount() const
+{
+ return 1;
+}
+
+wxDataFormat wxPrivateDropTarget::GetFormat(size_t n) const
+{
+ return wxDF_INVALID;
+}
#endif
// wxUSE_DRAG_AND_DROP
#endif
// wxUSE_DRAG_AND_DROP