diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2013-11-08 17:30:11 -0600 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2013-11-08 17:30:11 -0600 |
commit | 7d025dfef0cee534e3c973e01e98bae8fd73f41c (patch) | |
tree | a100183bcc2c53eccc715264e184a45f033e408f /libkonq | |
parent | 41044ad489e4f33901a958bf8c3a72ab7759c28d (diff) | |
download | tdebase-7d025dfef0cee534e3c973e01e98bae8fd73f41c.tar.gz tdebase-7d025dfef0cee534e3c973e01e98bae8fd73f41c.zip |
Update XDG mimetypes.
Diffstat (limited to 'libkonq')
-rw-r--r-- | libkonq/konq_dirpart.cc | 2 | ||||
-rw-r--r-- | libkonq/konq_drag.cc | 20 | ||||
-rw-r--r-- | libkonq/konq_operations.cc | 2 |
3 files changed, 12 insertions, 12 deletions
diff --git a/libkonq/konq_dirpart.cc b/libkonq/konq_dirpart.cc index 9f08dfb3c..ea1b19bb0 100644 --- a/libkonq/konq_dirpart.cc +++ b/libkonq/konq_dirpart.cc @@ -419,7 +419,7 @@ void KonqDirPart::slotClipboardDataChanged() KURL::List lst; TQMimeSource *data = TQApplication::clipboard()->data(); - if ( data->provides( "application/x-kde-cutselection" ) && data->provides( "text/uri-list" ) ) + if ( data->provides( "application/x-tde-cutselection" ) && data->provides( "text/uri-list" ) ) if ( KonqDrag::decodeIsCutSelection( data ) ) (void) KURLDrag::decode( data, lst ); diff --git a/libkonq/konq_drag.cc b/libkonq/konq_drag.cc index b25b7b1c2..bb05fc8d8 100644 --- a/libkonq/konq_drag.cc +++ b/libkonq/konq_drag.cc @@ -34,7 +34,7 @@ const char* KonqIconDrag::format( int i ) const else if ( i == 1 ) return "text/uri-list"; else if ( i == 2 ) - return "application/x-kde-cutselection"; + return "application/x-tde-cutselection"; else if ( i == 3 ) return "text/plain"; else if ( i == 4 ) //These two are imporant because they may end up being format 0, @@ -60,7 +60,7 @@ TQByteArray KonqIconDrag::encodedData( const char* mime ) const a.resize( s.length() + 1 ); // trailing zero memcpy( a.data(), s.data(), s.length() + 1 ); } - else if ( mimetype == "application/x-kde-cutselection" ) { + else if ( mimetype == "application/x-tde-cutselection" ) { TQCString s ( m_bCutSelection ? "1" : "0" ); a.resize( s.length() + 1 ); // trailing zero memcpy( a.data(), s.data(), s.length() + 1 ); @@ -115,7 +115,7 @@ bool KonqIconDrag::canDecode( const TQMimeSource* e ) { return e->provides( "application/x-qiconlist" ) || e->provides( "text/uri-list" ) || - e->provides( "application/x-kde-cutselection" ); + e->provides( "application/x-tde-cutselection" ); } void KonqIconDrag::append( const TQIconDragItem &item, const TQRect &pr, @@ -141,14 +141,14 @@ void KonqIconDrag2::append( const TQIconDragItem &item, const TQRect &pr, const char* KonqIconDrag2::format( int i ) const { if ( i == 6 ) - return "application/x-kde-urilist"; + return "application/x-tde-urilist"; return KonqIconDrag::format( i ); } TQByteArray KonqIconDrag2::encodedData( const char* mime ) const { TQCString mimetype( mime ); - if ( mimetype == "application/x-kde-urilist" ) + if ( mimetype == "application/x-tde-urilist" ) { TQByteArray a; int c=0; @@ -215,11 +215,11 @@ const char* KonqDrag::format( int i ) const if ( i == 0 ) return "text/uri-list"; else if ( i == 1 ) - return "application/x-kde-cutselection"; + return "application/x-tde-cutselection"; else if ( i == 2 ) return "text/plain"; else if ( i == 3 ) - return "application/x-kde-urilist"; + return "application/x-tde-urilist"; else return 0; } @@ -241,11 +241,11 @@ TQByteArray KonqDrag::encodedData( const char* mime ) const a.resize(c+1); a[c] = 0; } - else if ( mimetype == "application/x-kde-urilist" ) + else if ( mimetype == "application/x-tde-urilist" ) { return TQUriDrag::encodedData( "text/uri-list" ); } - else if ( mimetype == "application/x-kde-cutselection" ) + else if ( mimetype == "application/x-tde-cutselection" ) { TQCString s ( m_bCutSelection ? "1" : "0" ); a.resize( s.length() + 1 ); // trailing zero @@ -271,7 +271,7 @@ TQByteArray KonqDrag::encodedData( const char* mime ) const bool KonqDrag::decodeIsCutSelection( const TQMimeSource *e ) { - TQByteArray a = e->encodedData( "application/x-kde-cutselection" ); + TQByteArray a = e->encodedData( "application/x-tde-cutselection" ); if ( a.isEmpty() ) return false; else diff --git a/libkonq/konq_operations.cc b/libkonq/konq_operations.cc index cd9a61174..6e899c604 100644 --- a/libkonq/konq_operations.cc +++ b/libkonq/konq_operations.cc @@ -125,7 +125,7 @@ void KonqOperations::doPaste( TQWidget * parent, const KURL & destURL, const TQP // move or not move ? bool move = false; TQMimeSource *data = TQApplication::clipboard()->data(); - if ( data->provides( "application/x-kde-cutselection" ) ) { + if ( data->provides( "application/x-tde-cutselection" ) ) { move = KonqDrag::decodeIsCutSelection( data ); kdDebug(1203) << "move (from clipboard data) = " << move << endl; } |