diff options
Diffstat (limited to 'gui/about.cpp')
| -rw-r--r-- | gui/about.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/gui/about.cpp b/gui/about.cpp index 650c42d97c..74851caf94 100644 --- a/gui/about.cpp +++ b/gui/about.cpp @@ -164,10 +164,10 @@ void AboutDialog::addLine(const char *str) {  		Common::String format(str, 2);  		str += 2; -		Common::StringList wrappedLines; +		StringArray wrappedLines;  		g_gui.getFont().wordWrapText(str, _w - 2 * _xOff, wrappedLines); -		for (Common::StringList::const_iterator i = wrappedLines.begin(); i != wrappedLines.end(); ++i) { +		for (StringArray::const_iterator i = wrappedLines.begin(); i != wrappedLines.end(); ++i) {  			_lines.push_back(format + *i);  		}  	} | 
