From 803b6afd00b0e3574b40b866f21a0d3d01f6dc4d Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 26 Feb 2013 00:01:56 +0300 Subject: Improve string usage in other files. --- src/gui/npcdialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gui/npcdialog.cpp') diff --git a/src/gui/npcdialog.cpp b/src/gui/npcdialog.cpp index 0fbd52456..c2de9b1ad 100644 --- a/src/gui/npcdialog.cpp +++ b/src/gui/npcdialog.cpp @@ -235,7 +235,7 @@ void NpcDialog::addText(const std::string &text, const bool save) if (mText.size() > 5000) mText.clear(); - mNewText += text; + mNewText.append(text); mTextBox->addRow(text); // setText(mText + text + "\n"); } @@ -413,7 +413,7 @@ void NpcDialog::parseListItems(const std::string &itemString) mItems.push_back(tmp.substr(pos + 1)); Image *const img = resman->getImage( paths.getStringValue("guiIcons") - + tmp.substr(0, pos) + ".png"); + .append(tmp.substr(0, pos)).append(".png")); mImages.push_back(img); } } -- cgit v1.2.3-70-g09d2