From: ghost Date: Sun, 31 May 2009 16:01:11 +0000 (+0200) Subject: esubtitle.h: fix compiler warnings X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=commitdiff_plain;h=ca3361067f6e74db5765978bb6f41eaefc5f2c7e esubtitle.h: fix compiler warnings --- diff --git a/lib/gui/esubtitle.h b/lib/gui/esubtitle.h index d728777..d22ea0b 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) { } };