From ca3361067f6e74db5765978bb6f41eaefc5f2c7e Mon Sep 17 00:00:00 2001 From: ghost Date: Sun, 31 May 2009 18:01:11 +0200 Subject: [PATCH] esubtitle.h: fix compiler warnings --- lib/gui/esubtitle.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) { } }; -- 2.30.2