From 9f93e5bb81a54a98eb7957209662f152e2962679 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Tue, 28 Mar 2006 09:42:54 +0000 Subject: Renamed various container isEmpty() methods to empty() to match STL conventions svn-id: r21472 --- engines/queen/display.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/queen/display.cpp') diff --git a/engines/queen/display.cpp b/engines/queen/display.cpp index dc5c82aa4d..7c9573612a 100644 --- a/engines/queen/display.cpp +++ b/engines/queen/display.cpp @@ -836,7 +836,7 @@ void Display::setTextCentered(uint16 y, const char *text, bool outlined) { void Display::drawTexts() { for (int y = GAME_SCREEN_HEIGHT - 1; y > 0; --y) { const TextSlot *pts = &_texts[y]; - if (!pts->text.isEmpty()) { + if (!pts->text.empty()) { drawText(pts->x, y, pts->color, pts->text.c_str(), pts->outlined); } } -- cgit v1.2.3