summaryrefslogtreecommitdiffstats
path: root/kdecore
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-12 21:35:27 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-12 21:35:27 +0000
commitd583de5f4713939619dd22ddd4bd820ce8143fea (patch)
tree61bd652468af0458193489d70a788d7d50a1751f /kdecore
parent58cfbf297a9ea1656e861eba6bbcda8b9791497e (diff)
downloadtdelibs-d583de5f4713939619dd22ddd4bd820ce8143fea.tar.gz
tdelibs-d583de5f4713939619dd22ddd4bd820ce8143fea.zip
Forgot one conversion to TQIODevice_OpenModeFlag
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1162861 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdecore')
-rw-r--r--kdecore/kdebug.cpp2
1 files changed, 1 insertions, 1 deletions
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;