// ----------------------------------------------------------------------------
// wxTextDropTarget
// ----------------------------------------------------------------------------
-#ifndef __WXMAC_X__
+#ifndef __DARWIN__
bool wxTextDropTarget::OnDrop( wxCoord x, wxCoord y, const void *pData )
{
OnDropText( x, y, (const char*)pData );
return TRUE;
};
-#ifndef __WXMAC_X__
+#ifndef __DARWIN__
size_t wxTextDropTarget::GetFormatCount() const
{
return 1;
// wxFileDropTarget
// ----------------------------------------------------------------------------
-#ifndef __WXMAC_X__
+#ifndef __DARWIN__
bool wxFileDropTarget::OnDropFiles( wxCoord x, wxCoord y, size_t nFiles, const char * const WXUNUSED(aszFiles)[] )
{
printf( "Got %d dropped files.\n", (int)nFiles );
return OnDropFiles(x, y, 1, &filenames);
}
-#ifndef __WXMAC_X__
+#ifndef __DARWIN__
size_t wxFileDropTarget::GetFormatCount() const
{
return 1;