]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/metafile.cpp
added generic color dialog to setup
[wxWidgets.git] / src / mac / metafile.cpp
index 6a0a3a9eab2cd3685517be9737f27a1be7cdd03f..9d3d1576b79090c47b23a787838c2711e9da3eee 100644 (file)
@@ -83,19 +83,21 @@ wxMetaFile::~wxMetaFile()
 
 bool wxMetaFile::SetClipboard(int width, int height)
 {
+#if wxUSE_DRAG_AND_DROP
+//TODO finishi this port , we need the data obj first
     if (!m_refData)
         return FALSE;
 
-    bool alreadyOpen=wxClipboardOpen();
+    bool alreadyOpen=wxTheClipboard->IsOpened() ;
     if (!alreadyOpen)
     {
-        wxOpenClipboard();
-        if (!wxEmptyClipboard()) return FALSE;
+        wxTheClipboard->Open();
+        if (!wxTheClipboard->Clear()) return FALSE;
     }
     bool success = wxSetClipboardData(wxDF_METAFILE, this, width,height);
     if (!alreadyOpen) wxCloseClipboard();
            return (bool) success;
-
+#endif
     return TRUE ;
 }