X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/489468feaa08b8f504735eecca522fb8d0f825d2..9ac34ac9156ea40ad76025aedb6eef86b2a813cc:/src/osx/carbon/clipbrd.cpp diff --git a/src/osx/carbon/clipbrd.cpp b/src/osx/carbon/clipbrd.cpp index 7acd5845f4..a534352a9c 100644 --- a/src/osx/carbon/clipbrd.cpp +++ b/src/osx/carbon/clipbrd.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: src/mac/carbon/clipbrd.cpp +// Name: src/osx/carbon/clipbrd.cpp // Purpose: Clipboard functionality // Author: Stefan Csomor; // Generalized clipboard implementation by Matthew Flatt @@ -27,7 +27,7 @@ #include "wx/metafile.h" -#include "wx/mac/uma.h" +#include "wx/osx/private.h" #define wxUSE_DATAOBJ 1 @@ -36,7 +36,7 @@ // the trace mask we use with wxLogTrace() - call // wxLog::AddTraceMask(TRACE_CLIPBOARD) to enable the trace messages from here // (there will be a *lot* of them!) -#define TRACE_CLIPBOARD _T("clipboard") +#define TRACE_CLIPBOARD wxT("clipboard") IMPLEMENT_DYNAMIC_CLASS(wxClipboard, wxObject) @@ -142,7 +142,7 @@ void wxClipboard::Close() if (m_data) { delete m_data; - m_data = (wxDataObject*) NULL; + m_data = NULL; } }