From 263ff468d2850cd8a263df682da817e4bf34f8bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20Ker=C3=A4nen?= Date: Wed, 8 Jan 2014 10:25:49 +0200 Subject: [PATCH] Cleanup --- doomsday/client/src/ui/dialogs/logsettingsdialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doomsday/client/src/ui/dialogs/logsettingsdialog.cpp b/doomsday/client/src/ui/dialogs/logsettingsdialog.cpp index 03ec62d54d..27aa4efb64 100644 --- a/doomsday/client/src/ui/dialogs/logsettingsdialog.cpp +++ b/doomsday/client/src/ui/dialogs/logsettingsdialog.cpp @@ -72,8 +72,8 @@ DENG2_PIMPL(LogSettingsDialog) new VariableToggleWidget(tr("Filter by Subsystem"), App::config()["log.filterBySubsystem"])); - levels << new ChoiceItem(_E(C) + tr("1 - X.Verbose"), LogEntry::XVerbose) - << new ChoiceItem(_E(C) + tr("2 - Verbose"), LogEntry::Verbose ) + levels << new ChoiceItem( tr("1 - X.Verbose"), LogEntry::XVerbose) + << new ChoiceItem( tr("2 - Verbose"), LogEntry::Verbose ) << new ChoiceItem( tr("3 - Message"), LogEntry::Message ) << new ChoiceItem( tr("4 - Note"), LogEntry::Note ) << new ChoiceItem(_E(D) + tr("5 - Warning"), LogEntry::Warning )