From be2f47223c17c399e05436a34ba4140f2fc44fc9 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Thu, 4 Jul 2002 21:33:27 +0000 Subject: make the styles' doJustify methods stop returning the string length as this is no longer needed with the BFont class --- src/Basemenu.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Basemenu.cc') diff --git a/src/Basemenu.cc b/src/Basemenu.cc index 2dd6af70..5b4acdf0 100644 --- a/src/Basemenu.cc +++ b/src/Basemenu.cc @@ -442,7 +442,7 @@ void Basemenu::move(int x, int y) { void Basemenu::redrawTitle(void) { const char *text = (! menu.label.empty()) ? getLabel() : i18n(BasemenuSet, BasemenuBlackboxMenu, "Blackbox Menu"); - int dx = menu.bevel_w, len = strlen(text); + int dx = menu.bevel_w; unsigned int l; MenuStyle *style = screen->getMenuStyle(); @@ -544,7 +544,7 @@ void Basemenu::drawItem(int index, bool highlight, bool clear, int sbl = index / menu.persub, i = index - (sbl * menu.persub); int item_x = (sbl * menu.item_w), item_y = (i * menu.item_h); int hilite_x = item_x, hilite_y = item_y, hoff_x = 0, hoff_y = 0; - int text_x = 0, text_y = 0, len = strlen(text), sel_x = 0, sel_y = 0; + int text_x = 0, text_y = 0, sel_x = 0, sel_y = 0; unsigned int hilite_w = menu.item_w, hilite_h = menu.item_h, text_w = 0, text_h = 0; unsigned int half_w = menu.item_h / 2, quarter_w = menu.item_h / 4; -- cgit v1.2.3