]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/dataobj.cpp
minor change: disable debug messages flood from OnDragOver
[wxWidgets.git] / src / motif / dataobj.cpp
index 2edfb0e4b65e8d4c7429ef3bdd7226007d63ac13..1a0a4f491306b53ac8961eee6c9a55c4656c4c18 100644 (file)
@@ -89,7 +89,7 @@ wxDataFormat::wxDataFormat( const Atom atom )
         m_type = wxDF_PRIVATE;
        m_id = XGetAtomName( (Display*) wxGetDisplay(),  m_atom );
 
-       if (m_id == T("file:ALL"))
+       if (m_id == wxT("file:ALL"))
        {
            m_type = wxDF_FILENAME;
        }
@@ -102,21 +102,21 @@ void wxDataFormat::SetType( wxDataFormatId type )
 
     if (m_type == wxDF_TEXT)
     {
-        m_id = T("STRING");
+        m_id = wxT("STRING");
     }
     else
     if (m_type == wxDF_BITMAP)
     {
-        m_id = T("BITMAP");
+        m_id = wxT("BITMAP");
     }
     else
     if (m_type == wxDF_FILENAME)
     {
-        m_id = T("file:ALL");
+        m_id = wxT("file:ALL");
     }
     else
     {
-       wxFAIL_MSG( T("invalid dataformat") );
+       wxFAIL_MSG( wxT("invalid dataformat") );
     }
 
     m_hasAtom = FALSE;
@@ -268,7 +268,7 @@ void wxPrivateDataObject::Free()
 
 wxPrivateDataObject::wxPrivateDataObject()
 {
-    wxString id = T("application/");
+    wxString id = wxT("application/");
     id += wxTheApp->GetAppName();
 
     m_format.SetId( id );