From: ghost Date: Sun, 31 May 2009 16:01:11 +0000 (+0200) Subject: esubtitle.h: fix compiler warnings X-Git-Tag: 2.6.0~283 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/ca3361067f6e74db5765978bb6f41eaefc5f2c7e?ds=sidebyside esubtitle.h: fix compiler warnings --- diff --git a/lib/gui/esubtitle.h b/lib/gui/esubtitle.h index d7287776..d22ea0b8 100644 --- a/lib/gui/esubtitle.h +++ b/lib/gui/esubtitle.h @@ -12,11 +12,11 @@ struct ePangoSubtitlePageElement std::string m_pango_line; eRect m_area; ePangoSubtitlePageElement(const gRGB &color, const std::string &text) - : m_color(color), m_pango_line(text), m_have_color(true) + : m_color(color), m_have_color(true), m_pango_line(text) { } ePangoSubtitlePageElement(const std::string &text) - : m_pango_line(text), m_have_color(false) + : m_have_color(false), m_pango_line(text) { } };