diff options
author | Timothy Pearson <[email protected]> | 2011-12-15 15:29:22 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-15 15:29:22 -0600 |
commit | b3e956791016cf9eb1bf6a2138066bdd4d4cab8a (patch) | |
tree | f597165839e56186e005ee331ac5a88a1cdb5739 /bibletime/frontend/cdragdropmgr.cpp | |
parent | 9eb680e22cbcae634c6ff3833eddaff9e3be40e7 (diff) | |
download | bibletime-b3e956791016cf9eb1bf6a2138066bdd4d4cab8a.tar.gz bibletime-b3e956791016cf9eb1bf6a2138066bdd4d4cab8a.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'bibletime/frontend/cdragdropmgr.cpp')
-rw-r--r-- | bibletime/frontend/cdragdropmgr.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bibletime/frontend/cdragdropmgr.cpp b/bibletime/frontend/cdragdropmgr.cpp index de315bf..0179cc5 100644 --- a/bibletime/frontend/cdragdropmgr.cpp +++ b/bibletime/frontend/cdragdropmgr.cpp @@ -48,7 +48,7 @@ const char* CDragDropMgr::BTDrag::format( int i ) const { bool CDragDropMgr::BTDrag::decode(const TQMimeSource* e, TQString& str) { if (canDecode(e)) { - str = TQString( e->tqencodedData( "BibleTime/DND" ) ); + str = TQString( e->encodedData( "BibleTime/DND" ) ); return true; } return false; @@ -58,8 +58,8 @@ bool CDragDropMgr::BTDrag::decode(const TQMimeSource* e, TQString& str, TQCStrin return decode(e, str); }; -TQByteArray CDragDropMgr::BTDrag::tqencodedData( const char* /*type*/ ) const { - return TQTextDrag::tqencodedData("text/plain"); //hack because TQTextDrag only accepts text/plainand not our BibleTime/DND type +TQByteArray CDragDropMgr::BTDrag::encodedData( const char* /*type*/ ) const { + return TQTextDrag::encodedData("text/plain"); //hack because TQTextDrag only accepts text/plainand not our BibleTime/DND type }; ///////////////////////////// new class ////////////////////// |