From d583de5f4713939619dd22ddd4bd820ce8143fea Mon Sep 17 00:00:00 2001 From: tpearson Date: Thu, 12 Aug 2010 21:35:27 +0000 Subject: [PATCH] Forgot one conversion to TQIODevice_OpenModeFlag git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1162861 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kdecore/kdebug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kdecore/kdebug.cpp b/kdecore/kdebug.cpp index 2370d406f..b581b5fdd 100644 --- a/kdecore/kdebug.cpp +++ b/kdecore/kdebug.cpp @@ -282,7 +282,7 @@ static void kDebugBackend( unsigned short nLevel, unsigned int nArea, const char break; } TQFile aOutputFile( kDebug_data->config->readPathEntry(aKey, "kdebug.dbg") ); - aOutputFile.open( (QIODevice::OpenModeFlag)((int)IO_WriteOnly | (int)IO_Append | (int)IO_Raw) ); + aOutputFile.open( (TQIODevice_OpenModeFlag)((int)IO_WriteOnly | (int)IO_Append | (int)IO_Raw) ); aOutputFile.writeBlock( buf, strlen( buf ) ); aOutputFile.close(); break;