diff options
-rw-r--r-- | src/FbTk/Menu.cc | 4 | ||||
-rw-r--r-- | util/fbrun/FbRun.cc | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/FbTk/Menu.cc b/src/FbTk/Menu.cc index 671d32a..a66b6c0 100644 --- a/src/FbTk/Menu.cc +++ b/src/FbTk/Menu.cc | |||
@@ -378,7 +378,7 @@ void Menu::enterSubmenu() { | |||
378 | if (submenu == 0) | 378 | if (submenu == 0) |
379 | return; | 379 | return; |
380 | 380 | ||
381 | if (submenu->menuitems.size() == 0) | 381 | if (submenu->menuitems.empty()) |
382 | return; | 382 | return; |
383 | 383 | ||
384 | drawSubmenu(m_active_index); | 384 | drawSubmenu(m_active_index); |
@@ -773,7 +773,7 @@ void Menu::drawSubmenu(unsigned int index) { | |||
773 | int Menu::drawItem(FbDrawable &drawable, unsigned int index, | 773 | int Menu::drawItem(FbDrawable &drawable, unsigned int index, |
774 | bool highlight, bool exclusive_drawable) { | 774 | bool highlight, bool exclusive_drawable) { |
775 | 775 | ||
776 | if (index >= menuitems.size() || menuitems.size() == 0 || | 776 | if (index >= menuitems.size() || menuitems.empty() || |
777 | m_rows_per_column == 0) | 777 | m_rows_per_column == 0) |
778 | return 0; | 778 | return 0; |
779 | 779 | ||
diff --git a/util/fbrun/FbRun.cc b/util/fbrun/FbRun.cc index 1dd813a..9ed3186 100644 --- a/util/fbrun/FbRun.cc +++ b/util/fbrun/FbRun.cc | |||
@@ -346,7 +346,7 @@ void FbRun::lockPosition(bool size_too) { | |||
346 | } | 346 | } |
347 | 347 | ||
348 | void FbRun::prevHistoryItem() { | 348 | void FbRun::prevHistoryItem() { |
349 | if (m_history.size() == 0 || m_current_history_item == 0) { | 349 | if (m_history.empty() || m_current_history_item == 0) { |
350 | XBell(m_display, 0); | 350 | XBell(m_display, 0); |
351 | } else { | 351 | } else { |
352 | m_current_history_item--; | 352 | m_current_history_item--; |
@@ -370,7 +370,7 @@ void FbRun::nextHistoryItem() { | |||
370 | } | 370 | } |
371 | 371 | ||
372 | void FbRun::firstHistoryItem() { | 372 | void FbRun::firstHistoryItem() { |
373 | if (m_history.size() == 0 || m_current_history_item == 0) { | 373 | if (m_history.empty() || m_current_history_item == 0) { |
374 | XBell(m_display, 0); | 374 | XBell(m_display, 0); |
375 | } else { | 375 | } else { |
376 | m_current_history_item = 0; | 376 | m_current_history_item = 0; |
@@ -380,7 +380,7 @@ void FbRun::firstHistoryItem() { | |||
380 | 380 | ||
381 | void FbRun::lastHistoryItem() { | 381 | void FbRun::lastHistoryItem() { |
382 | // actually one past the end | 382 | // actually one past the end |
383 | if (m_history.size() == 0) { | 383 | if (m_history.empty()) { |
384 | XBell(m_display, 0); | 384 | XBell(m_display, 0); |
385 | } else { | 385 | } else { |
386 | m_current_history_item = m_history.size(); | 386 | m_current_history_item = m_history.size(); |