diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:56:31 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:56:31 -0600 |
commit | c9cb4f487428aad5d8cda5e3a4b9ad87390d7e54 (patch) | |
tree | 1ee1912ac4bb966475f0db0f2a78678661b4b4a5 /karbon/karbon_drag.cpp | |
parent | 94844816550ad672ccfcdc25659c625546239998 (diff) | |
download | koffice-c9cb4f487428aad5d8cda5e3a4b9ad87390d7e54.tar.gz koffice-c9cb4f487428aad5d8cda5e3a4b9ad87390d7e54.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 94844816550ad672ccfcdc25659c625546239998.
Diffstat (limited to 'karbon/karbon_drag.cpp')
-rw-r--r-- | karbon/karbon_drag.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/karbon/karbon_drag.cpp b/karbon/karbon_drag.cpp index 88ce476e..3c60e94d 100644 --- a/karbon/karbon_drag.cpp +++ b/karbon/karbon_drag.cpp @@ -21,7 +21,7 @@ #include <tqcstring.h> #include <tqdom.h> -#include <textstream.h> +#include <tqtextstream.h> #include "vdocument.h" @@ -46,7 +46,7 @@ KarbonDrag::format( int i ) const } TQByteArray -KarbonDrag::encodedData( const char* mimetype ) const +KarbonDrag::tqencodedData( const char* mimetype ) const { TQCString result; @@ -85,7 +85,7 @@ KarbonDrag::decode( TQMimeSource* e, VObjectList& sl, VDocument& vdoc ) if( e->provides( m_decodeFormats[0] ) ) { TQDomDocument doc( "clip" ); - TQByteArray data = e->encodedData( m_decodeFormats[0] ); + TQByteArray data = e->tqencodedData( m_decodeFormats[0] ); doc.setContent( TQCString( data, data.size()+1 ) ); TQDomElement clip = doc.documentElement(); // Try to parse the clipboard data |