Theming: Unify some duplicate color roles

Change-Id: Ic000abd9bd9381e20126d0ce56ce68a35a07efe2
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
This commit is contained in:
Orgad Shaneh
2015-03-30 10:47:48 +03:00
committed by Orgad Shaneh
parent e623de1ede
commit 919e3c7261
6 changed files with 32 additions and 45 deletions

View File

@@ -88,11 +88,11 @@ private:
setFormat(1, text.size(), format);
break;
case LogWarning:
format.setForeground(theme->color(Theme::Debugger_LogWindow_LogWarning));
format.setForeground(theme->color(Theme::OutputPanes_WarningMessageTextColor));
setFormat(1, text.size(), format);
break;
case LogError:
format.setForeground(theme->color(Theme::Debugger_LogWindow_LogError));
format.setForeground(theme->color(Theme::OutputPanes_ErrorMessageTextColor));
setFormat(1, text.size(), format);
break;
case LogTime: