#include "wx/metafile.h"
#include "wx/clipbrd.h"
#include "wx/intl.h"
+#include "wx/log.h"
#include "wx/mac/private.h"
#ifndef __DARWIN__
* Generalized clipboard implementation by Matthew Flatt
*/
-IMPLEMENT_DYNAMIC_CLASS(wxClipboard, wxClipboardBase)
+IMPLEMENT_DYNAMIC_CLASS(wxClipboard, wxObject)
wxClipboard::wxClipboard()
{
wxCHECK_MSG( data, FALSE, wxT("data is invalid") );
- wxDataFormat format = data->GetPreferredFormat();
-
/* we can only store one wxDataObject */
Clear();
array[i].GetId().c_str() );
#if !TARGET_CARBON
- OSErr err = noErr ;
+ OSErr err = noErr ;
#else
- OSStatus err = noErr ;
+ OSStatus err = noErr ;
#endif
switch ( array[i].GetType() )
{
wxCHECK_MSG( m_open, FALSE, wxT("clipboard not open") );
- int formatcount = data.GetFormatCount() + 1 ;
+ size_t formatcount = data.GetFormatCount() + 1 ;
wxDataFormat *array = new wxDataFormat[ formatcount ];
array[0] = data.GetPreferredFormat();
data.GetAllFormats( &array[1] );