diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-03 00:48:33 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-05 12:00:58 +0900 |
commit | af8caeadf368a17dabd9f53d4c661213c840eebd (patch) | |
tree | 6b01a0c8e9b8bbf98871807acf53d7bfb2a5b0a5 /tdeprint/foomatic2loader.cpp | |
parent | 553b705008a60b557c076391bc6ee199eef1a708 (diff) | |
download | tdelibs-af8caeadf368a17dabd9f53d4c661213c840eebd.tar.gz tdelibs-af8caeadf368a17dabd9f53d4c661213c840eebd.zip |
Replaced various '#define' with actual strings - part 5
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 44e712a770ad0ab59d33790a80b5f6235cff6921)
Diffstat (limited to 'tdeprint/foomatic2loader.cpp')
-rw-r--r-- | tdeprint/foomatic2loader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeprint/foomatic2loader.cpp b/tdeprint/foomatic2loader.cpp index c498477fd..0856cc012 100644 --- a/tdeprint/foomatic2loader.cpp +++ b/tdeprint/foomatic2loader.cpp @@ -53,7 +53,7 @@ bool Foomatic2Loader::readFromFile( const TQString& filename ) TQFile f( filename ); m_foodata.clear(); if ( f.open( IO_ReadOnly ) ) - return read( TQT_TQIODEVICE(&f) ); + return read( &f ); return false; } @@ -63,7 +63,7 @@ bool Foomatic2Loader::readFromBuffer( const TQString& buffer ) TQBuffer d( buf ); m_foodata.clear(); if ( d.open( IO_ReadOnly ) ) - return read( TQT_TQIODEVICE(&d) ); + return read( &d ); return false; } |