From eedb5d1c659cdc4390915654b2a9f08ae51271fa Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Sat, 10 Jan 2009 21:48:29 +0100 Subject: [PATCH] Don't print quotes in usage() --- src/common/cliparser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/cliparser.cpp b/src/common/cliparser.cpp index 625f64ab..598fc484 100644 --- a/src/common/cliparser.cpp +++ b/src/common/cliparser.cpp @@ -184,7 +184,7 @@ void CliParser::usage() { if(arg.value().type == CliParserArg::CliArgOption && !arg.value().def.isNull()) { output.append(". Default is: ").append(arg.value().def); } - qWarning() << output.toLatin1(); + qWarning() << qPrintable(output); } } -- 2.20.1