From d91d552c822554c4ea6f0a24e13d4a1b6ff1de6f Mon Sep 17 00:00:00 2001 From: Nikolai Kosjar Date: Thu, 21 Nov 2013 11:15:26 +0100 Subject: CppEditor: Append extra ' ' in comment continuations ...for c style multiline comments and doxygens "///" and "//!". Task-number: QTCREATORBUG-10856 Change-Id: I84a4f95ba9e676991484e45bb0f64be996ac3be9 Reviewed-by: Ulf Hermann Reviewed-by: David Schulz --- src/plugins/cppeditor/cppdoxygen_test.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/plugins/cppeditor/cppdoxygen_test.cpp') diff --git a/src/plugins/cppeditor/cppdoxygen_test.cpp b/src/plugins/cppeditor/cppdoxygen_test.cpp index 56a75178ff..ab8a947940 100644 --- a/src/plugins/cppeditor/cppdoxygen_test.cpp +++ b/src/plugins/cppeditor/cppdoxygen_test.cpp @@ -170,7 +170,7 @@ void CppEditorPlugin::test_doxygen_comments_data() "bool preventFolding;\n" "/*!\n" " * \\brief a\n" - " *\n" + " * \n" " */\n" "int a;\n" ); @@ -197,7 +197,7 @@ void CppEditorPlugin::test_doxygen_comments_data() "bool preventFolding;\n" "/**\n" " * @brief a\n" - " *\n" + " * \n" " */\n" "int a;\n" ); @@ -236,7 +236,7 @@ void CppEditorPlugin::test_doxygen_comments_data() "bool preventFolding;\n" "///\n" "/// \\brief a\n" - "///\n" + "/// \n" "///\n" "int a;\n" ); @@ -265,7 +265,7 @@ void CppEditorPlugin::test_doxygen_comments_data() " bool preventFolding;\n" " ///\n" " /// \\brief a\n" - " ///\n" + " /// \n" " ///\n" " int a;\n" ); -- cgit v1.2.1