diff options
Diffstat (limited to 'kword/KWView.cpp')
-rw-r--r-- | kword/KWView.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kword/KWView.cpp b/kword/KWView.cpp index 633e0f3d..de64037d 100644 --- a/kword/KWView.cpp +++ b/kword/KWView.cpp @@ -2435,7 +2435,7 @@ void KWView::pasteData( TQMimeSource* data, bool drop ) if( !arr.isEmpty() ) { TQBuffer buffer( arr ); - KoStore * store = KoStore::createStore( TQT_TQIODEVICE(&buffer), KoStore::Read ); + KoStore * store = KoStore::createStore( &buffer, KoStore::Read ); KWOasisLoader oasisLoader( m_doc ); TQValueList<KWFrame *> frames = oasisLoader.insertOasisData( store, 0 /* no cursor */ ); delete store; @@ -6118,7 +6118,7 @@ void KWView::savePicture() TQFile file( url.path() ); if ( file.open( IO_ReadWrite ) ) { - picture.save( TQT_TQIODEVICE(&file) ); + picture.save( &file ); file.close(); } else @@ -6137,7 +6137,7 @@ void KWView::savePicture() TQFile file( tempFile.name() ); if ( file.open( IO_ReadWrite ) ) { - picture.save( TQT_TQIODEVICE(&file) ); + picture.save( &file ); file.close(); if ( !TDEIO::NetAccess::upload( tempFile.name(), url, this ) ) { |