aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2017-10-15 20:54:52 +0200
committerEugene Sandulenko2017-10-15 20:55:31 +0200
commitfb30dd436222243e67d009a1ae1ad616f75ea11e (patch)
tree4c0bb28d41fd68ce4db8673936caac9f60f1703f
parentbda253b1acfa8e8ce76436780ba9fa86d712c7a0 (diff)
downloadscummvm-rg350-fb30dd436222243e67d009a1ae1ad616f75ea11e.tar.gz
scummvm-rg350-fb30dd436222243e67d009a1ae1ad616f75ea11e.tar.bz2
scummvm-rg350-fb30dd436222243e67d009a1ae1ad616f75ea11e.zip
GUI: Cleanup
-rw-r--r--gui/updates-dialog.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/gui/updates-dialog.cpp b/gui/updates-dialog.cpp
index be7202326b..0f933bf7ce 100644
--- a/gui/updates-dialog.cpp
+++ b/gui/updates-dialog.cpp
@@ -83,13 +83,11 @@ UpdatesDialog::UpdatesDialog() : Dialog(30, 20, 260, 124) {
y += kLineHeight;
-
const char *updMessage = _("Update check:");
int updatelineWidth = g_gui.getFont().wordWrapText(updMessage, screenW - 2 * 20, lines3) + 5;
- new StaticTextWidget(this, 10, y, maxlineWidth, kLineHeight,
- lines3[0], Graphics::kTextAlignLeft);
+ new StaticTextWidget(this, 10, y, maxlineWidth, kLineHeight, lines3[0], Graphics::kTextAlignLeft);
_updatesPopUp = new PopUpWidget(this, 10 + updatelineWidth, y, _w - 20 - updatelineWidth, g_gui.xmlEval()->getVar("Globals.PopUp.Height", kLineHeight));