Skip to content

Commit

Permalink
libcore|Record: Cleanup of text output
Browse files Browse the repository at this point in the history
Like in a Function, use parentheses in the text output of an imported
record.
  • Loading branch information
skyjake committed Jul 7, 2015
1 parent 3ec42ee commit d1d97dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/sdk/libcore/src/data/record.cpp
Expand Up @@ -571,7 +571,7 @@ String Record::asText(String const &prefix, List *lines) const
// If this is a module, don't print out the entire contents.
if(!gets("__file__", "").isEmpty())
{
return QString("Record imported from \"%1\"").arg(gets("__file__"));
return QString("(Record imported from \"%1\")").arg(gets("__file__"));
}

// Recursive calls to collect all variables in the record.
Expand Down

0 comments on commit d1d97dc

Please sign in to comment.