diff options
author | Paul Gilbert | 2015-07-20 20:12:02 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-07-20 20:12:02 -0400 |
commit | 4a738f972a79f905cb6190925519f3ab4938c576 (patch) | |
tree | 49231f141ef9cd5d51d99ed6e3ff2d2808b4e07b /engines/sherlock | |
parent | 39930a25c3359955346c487ed59374b193273b38 (diff) | |
download | scummvm-rg350-4a738f972a79f905cb6190925519f3ab4938c576.tar.gz scummvm-rg350-4a738f972a79f905cb6190925519f3ab4938c576.tar.bz2 scummvm-rg350-4a738f972a79f905cb6190925519f3ab4938c576.zip |
SHERLOCK: RT: Compilation fix
Diffstat (limited to 'engines/sherlock')
-rw-r--r-- | engines/sherlock/tattoo/widget_lab.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/tattoo/widget_lab.cpp b/engines/sherlock/tattoo/widget_lab.cpp index 99f0e87fab..2d4a4dc2b4 100644 --- a/engines/sherlock/tattoo/widget_lab.cpp +++ b/engines/sherlock/tattoo/widget_lab.cpp @@ -167,7 +167,7 @@ void WidgetLab::displayLabNames() { ui._tooltipWidget.setText(""); } else { Common::String str = Common::String::format("%s %s %s %s", FIXED(Use), _labObject->_description.c_str(), - FIXED(With), ui._bgShape->_description); + FIXED(With), ui._bgShape->_description.c_str()); // Make sure that the Object has a name if (!ui._bgShape->_description.empty() && !ui._bgShape->_description.hasPrefix(" ")) { |