summaryrefslogtreecommitdiffstats
path: root/klipper
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2013-11-08 17:30:11 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2013-11-08 17:30:11 -0600
commit7d025dfef0cee534e3c973e01e98bae8fd73f41c (patch)
treea100183bcc2c53eccc715264e184a45f033e408f /klipper
parent41044ad489e4f33901a958bf8c3a72ab7759c28d (diff)
downloadtdebase-7d025dfef0cee534e3c973e01e98bae8fd73f41c.tar.gz
tdebase-7d025dfef0cee534e3c973e01e98bae8fd73f41c.zip
Update XDG mimetypes.
Diffstat (limited to 'klipper')
-rw-r--r--klipper/historyitem.cpp2
-rw-r--r--klipper/historyurlitem.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/klipper/historyitem.cpp b/klipper/historyitem.cpp
index 481339b30..e035856d7 100644
--- a/klipper/historyitem.cpp
+++ b/klipper/historyitem.cpp
@@ -52,7 +52,7 @@ HistoryItem* HistoryItem::create( const TQMimeSource& aSource )
TQMap<TQString,TQString> metaData;
if( KURLDrag::decode( &aSource, urls, metaData )) {
// this is from KonqDrag (libkonq)
- TQByteArray a = aSource.encodedData( "application/x-kde-cutselection" );
+ TQByteArray a = aSource.encodedData( "application/x-tde-cutselection" );
bool cut = !a.isEmpty() && (a.at(0) == '1'); // true if 1
return new HistoryURLItem( urls, metaData, cut );
}
diff --git a/klipper/historyurlitem.cpp b/klipper/historyurlitem.cpp
index 0d54ce44c..ea8fb7ffd 100644
--- a/klipper/historyurlitem.cpp
+++ b/klipper/historyurlitem.cpp
@@ -41,7 +41,7 @@ TQMimeSource* HistoryURLItem::mimeSource() const {
KMultipleDrag* drag = new KMultipleDrag;
drag->addDragObject( new KURLDrag( urls, metaData ));
// from KonqDrag (libkonq)
- TQStoredDrag* cutdrag = new TQStoredDrag( "application/x-kde-cutselection" );
+ TQStoredDrag* cutdrag = new TQStoredDrag( "application/x-tde-cutselection" );
TQByteArray a;
TQCString s ( cut ? "1" : "0" );
a.resize( s.length() + 1 ); // trailing zero