Made Menu::get_item_by_id(int id) error message sligthly more useful
authorIngo Ruhnke <grumbel@gmail.com>
Wed, 27 Aug 2014 08:23:58 +0000 (10:23 +0200)
committerIngo Ruhnke <grumbel@gmail.com>
Wed, 27 Aug 2014 08:23:58 +0000 (10:23 +0200)
src/gui/menu.cpp

index 1a636ee..fd253e9 100644 (file)
@@ -625,7 +625,7 @@ Menu::get_item_by_id(int id)
     }
   }
 
-  throw std::runtime_error("MenuItem not found");
+  throw std::runtime_error("MenuItem not found: " + std::to_string(id));
 }
 
 const MenuItem&