diff options
author | Timothy Pearson <[email protected]> | 2011-12-18 18:01:21 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-18 18:01:21 -0600 |
commit | b3604f731cc45450d860d07be06fc050339de07a (patch) | |
tree | 339ae23dd7ec32f81d8feeed9c74cfc6e8108f2d /bibletime/frontend/cdragdropmgr.cpp | |
parent | 3b005fadaa25c84a914d6889714a6f476afb8187 (diff) | |
download | bibletime-b3604f731cc45450d860d07be06fc050339de07a.tar.gz bibletime-b3604f731cc45450d860d07be06fc050339de07a.zip |
Rename old tq methods that no longer need a unique name
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 ////////////////////// |