Commit cb5c7571 authored by JP Dinger's avatar JP Dinger

Skins2: Add missing return statements.

Spotted by Dominique Leuenberger. Thanks.
parent d51d6fa2
...@@ -189,11 +189,11 @@ Theme::IDmap<T>::find_first_object( const string &id ) const ...@@ -189,11 +189,11 @@ Theme::IDmap<T>::find_first_object( const string &id ) const
GenericBitmap *Theme::getBitmapById( const string &id ) const GenericBitmap *Theme::getBitmapById( const string &id ) const
{ {
m_bitmaps.find_first_object( id ); return m_bitmaps.find_first_object( id );
} }
GenericFont *Theme::getFontById( const string &id ) const GenericFont *Theme::getFontById( const string &id ) const
{ {
m_fonts.find_first_object( id ); return m_fonts.find_first_object( id );
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment