summaryrefslogtreecommitdiffstats
path: root/src/projects
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-03 00:35:48 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-03 15:45:12 +0900
commitb67830aae3b0bd8e8bfd2be1a7714dcb978ff59b (patch)
tree3c63865233adb4c6d14c74369ff4d40eb1cc743f /src/projects
parent00a24ebc1b4ddb17fbfcfca3784ddbc398f0ff5c (diff)
downloadk3b-b67830aae3b0bd8e8bfd2be1a7714dcb978ff59b.tar.gz
k3b-b67830aae3b0bd8e8bfd2be1a7714dcb978ff59b.zip
Replaced various '#define' with actual strings - part 5
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/projects')
-rw-r--r--src/projects/kostore/koStore.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/projects/kostore/koStore.cpp b/src/projects/kostore/koStore.cpp
index 24fc737..c59ab0f 100644
--- a/src/projects/kostore/koStore.cpp
+++ b/src/projects/kostore/koStore.cpp
@@ -69,7 +69,7 @@ KoStore* KoStore::createStore( const TQString& fileName, Mode mode, const TQCStr
{
TQFile file( fileName );
if ( file.open( IO_ReadOnly ) )
- backend = determineBackend( TQT_TQIODEVICE(&file) );
+ backend = determineBackend( &file );
else
backend = DefaultFormat; // will create a "bad" store (bad()==true)
}
@@ -143,7 +143,7 @@ KoStore* KoStore::createStore( TQWidget* window, const KURL& url, Mode mode, con
TQFile file( tmpFile );
if ( file.open( IO_ReadOnly ) )
{
- backend = determineBackend( TQT_TQIODEVICE(&file) );
+ backend = determineBackend( &file );
file.close();
}
}