mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 10:52:49 +00:00
kdecore: replace hard-codec KDebug output types with enums
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
945f411733
commit
f80529f5cd
1 changed files with 4 additions and 4 deletions
|
@ -368,10 +368,10 @@ class KDebugAreaCache
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
KDebugAreaCache()
|
KDebugAreaCache()
|
||||||
: infooutput(4),
|
: infooutput(KDebugType::TypeOff),
|
||||||
warnoutput(2),
|
warnoutput(KDebugType::TypeShell),
|
||||||
erroroutput(2),
|
erroroutput(KDebugType::TypeShell),
|
||||||
fataloutput(2),
|
fataloutput(KDebugType::TypeShell),
|
||||||
infofilename(s_kdebugfilepath),
|
infofilename(s_kdebugfilepath),
|
||||||
warnfilename(s_kdebugfilepath),
|
warnfilename(s_kdebugfilepath),
|
||||||
errorfilename(s_kdebugfilepath),
|
errorfilename(s_kdebugfilepath),
|
||||||
|
|
Loading…
Add table
Reference in a new issue