Browse Source

Small fix with respect to simplified Token::get_brief_comments.

merge-requests/365/head
eidheim 11 years ago
parent
commit
5214102343
  1. 2
      juci/source.cc

2
juci/source.cc

@ -388,7 +388,7 @@ void Source::ClangViewParse::update_types() {
tooltip_buffer->insert_at_cursor("Type: "+token.get_type());
auto brief_comment=token.get_brief_comments();
if(brief_comment!="")
tooltip_buffer->insert_at_cursor("\n\n"+brief_comment+".");
tooltip_buffer->insert_at_cursor("\n\n"+brief_comment);
return tooltip_buffer;
};

Loading…
Cancel
Save