aboutsummaryrefslogtreecommitdiff
path: root/lib/gui
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-05-31 18:01:11 +0200
committerghost <andreas.monzner@multimedia-labs.de>2009-05-31 18:01:11 +0200
commitca3361067f6e74db5765978bb6f41eaefc5f2c7e (patch)
treeb556bd5c92db05572cf8a419d4e5a0282e0d9eee /lib/gui
parent1c0fed5449b5ab880575587803451fc58fee13eb (diff)
downloadenigma2-ca3361067f6e74db5765978bb6f41eaefc5f2c7e.tar.gz
enigma2-ca3361067f6e74db5765978bb6f41eaefc5f2c7e.zip
esubtitle.h: fix compiler warnings
Diffstat (limited to 'lib/gui')
-rw-r--r--lib/gui/esubtitle.h4
1 files 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)
{
}
};