From 8ce39a8a3b988c8de77c7f6c74864e282b3936a9 Mon Sep 17 00:00:00 2001 From: Sergey Belyashov <Sergey.Belyashov@gmail.com> Date: Sun, 13 Sep 2009 12:32:34 +0400 Subject: [PATCH] Fixed warning about deprecated conversion from string literal to char*. --- src/plugins/duieditor/duicodeformatter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/duieditor/duicodeformatter.h b/src/plugins/duieditor/duicodeformatter.h index 71077dfbef4..ebb2ef57db8 100644 --- a/src/plugins/duieditor/duicodeformatter.h +++ b/src/plugins/duieditor/duicodeformatter.h @@ -54,7 +54,7 @@ protected: private: void append(char c) { m_result += c; } - void append(char *s) { m_result += s; } + void append(const char *s) { m_result += s; } void append(const QString &s) { m_result += s; } void append(const QmlJS::AST::SourceLocation &loc) { m_result += textAt(loc); } void append(int pos, int len) { append(textAt(pos, len)); } -- GitLab