From 1f1a88534e720d63c17cd0a6730dd3ced14858dd Mon Sep 17 00:00:00 2001 From: Wayne Stambaugh Date: Mon, 11 Nov 2013 16:39:02 -0500 Subject: [PATCH] Escape " character to fix warning in TokenList2DsnLexer.cmake --- CMakeModules/TokenList2DsnLexer.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeModules/TokenList2DsnLexer.cmake b/CMakeModules/TokenList2DsnLexer.cmake index 3445a9fd2f..df2ea8adf9 100644 --- a/CMakeModules/TokenList2DsnLexer.cmake +++ b/CMakeModules/TokenList2DsnLexer.cmake @@ -245,7 +245,7 @@ public: * Constructor ( const std::string&, const wxString& ) * @param aSExpression is (utf8) text possibly from the clipboard that you want to parse. * @param aSource is a description of the origin of @a aSExpression, such as a filename. - * If left empty, then _("clipboard") is used. + * If left empty, then _(\"clipboard\") is used. */ ${LEXERCLASS}( const std::string& aSExpression, const wxString& aSource = wxEmptyString ) : DSNLEXER( keywords, keyword_count, aSExpression, aSource )