mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 02:42:48 +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:
|
||||
KDebugAreaCache()
|
||||
: infooutput(4),
|
||||
warnoutput(2),
|
||||
erroroutput(2),
|
||||
fataloutput(2),
|
||||
: infooutput(KDebugType::TypeOff),
|
||||
warnoutput(KDebugType::TypeShell),
|
||||
erroroutput(KDebugType::TypeShell),
|
||||
fataloutput(KDebugType::TypeShell),
|
||||
infofilename(s_kdebugfilepath),
|
||||
warnfilename(s_kdebugfilepath),
|
||||
errorfilename(s_kdebugfilepath),
|
||||
|
|
Loading…
Add table
Reference in a new issue