projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fixed pasting of Unicode strings
[wxWidgets.git]
/
src
/
os2
/
dnd.cpp
diff --git
a/src/os2/dnd.cpp
b/src/os2/dnd.cpp
index a8dc2ed31595e5464e0ed393f2b85448ae06f1cc..b12b6af4bbb0c3d5e4e9f1ca2c1c1038c56b97ad 100644
(file)
--- a/
src/os2/dnd.cpp
+++ b/
src/os2/dnd.cpp
@@
-32,6
+32,7
@@
// Private functions
/////////////////////////////////////////////////////////////////////////////
// Private functions
/////////////////////////////////////////////////////////////////////////////
+#if 0
static wxDragResult ConvertDragEffectToResult (
DWORD dwEffect
)
static wxDragResult ConvertDragEffectToResult (
DWORD dwEffect
)
@@
-73,6
+74,7
@@
static DWORD ConvertDragResultToEffect (
return DO_DEFAULT;
}
} // end of ConvertDragResultToEffect
return DO_DEFAULT;
}
} // end of ConvertDragResultToEffect
+#endif
class CIDropTarget
{
class CIDropTarget
{
@@
-517,6
+519,11
@@
bool wxDropSource::GiveFeedback (
case wxDragLink:
m_pDragInfo->usOperation = DO_LINK;
break;
case wxDragLink:
m_pDragInfo->usOperation = DO_LINK;
break;
+
+ case wxDragNone:
+ case wxDragCancel:
+ case wxDragError:
+ break;
}
return TRUE;
}
}
return TRUE;
}