// Name: src/motif/dataobj.cpp
// Purpose: wxDataObject class
// Author: Julian Smart
-// Id: $Id$
// Copyright: (c) 1998 Julian Smart
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
bool wxBitmapDataObject::GetDataHere(void* buf) const
{
- if( !GetBitmap().Ok() )
+ if( !GetBitmap().IsOk() )
return false;
(*(Pixmap*)buf) = (Pixmap)GetBitmap().GetDrawable();