summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/aboutbox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/dialog/aboutbox.cpp')
-rw-r--r--src/ui/dialog/aboutbox.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/aboutbox.cpp b/src/ui/dialog/aboutbox.cpp
index fb2b86b68..6cee2e10e 100644
--- a/src/ui/dialog/aboutbox.cpp
+++ b/src/ui/dialog/aboutbox.cpp
@@ -163,7 +163,7 @@ void AboutBox::initStrings() {
std::string author_line;
while (std::getline(authors_filestream, author_line)) {
- authors.push_back(author_line);
+ authors.emplace_back(author_line);
}
}