From fb6b4d204d1155fa3a1bc7a128873340db1524f7 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 3 Dec 2023 00:36:33 +0900 Subject: Replaced various '#define' with actual strings - part 5 Signed-off-by: Michele Calgaro --- lib/store/KoTarStore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/store/KoTarStore.cpp') diff --git a/lib/store/KoTarStore.cpp b/lib/store/KoTarStore.cpp index d4e6667a..160258d9 100644 --- a/lib/store/KoTarStore.cpp +++ b/lib/store/KoTarStore.cpp @@ -126,7 +126,7 @@ bool KoTarStore::openWrite( const TQString& /*name*/ ) { // Prepare memory buffer for writing m_byteArray.resize( 0 ); - m_stream = TQT_TQIODEVICE(new TQBuffer( m_byteArray )); + m_stream = new TQBuffer( m_byteArray ); m_stream->open( IO_WriteOnly ); return true; } -- cgit v1.2.1