From d1d97dc0755c438b43a3b4048e9dad222380e0c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20Ker=C3=A4nen?= Date: Tue, 7 Jul 2015 20:07:07 +0300 Subject: [PATCH] libcore|Record: Cleanup of text output Like in a Function, use parentheses in the text output of an imported record. --- doomsday/sdk/libcore/src/data/record.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doomsday/sdk/libcore/src/data/record.cpp b/doomsday/sdk/libcore/src/data/record.cpp index 753655c70f..cef68a3519 100644 --- a/doomsday/sdk/libcore/src/data/record.cpp +++ b/doomsday/sdk/libcore/src/data/record.cpp @@ -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.