diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-23 00:48:06 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-23 00:48:06 +0000 |
| commit | 549ed3c87c4d3fe093472aa199ca6742c1f3654f (patch) | |
| tree | 6c5668e6119bb59f6bd52c2bbd356a9e7bb6c1b9 /lib/gui/elistboxcontent.cpp | |
| parent | 1fe64f3ba259fa5d9d12b3a69bf245dec4bee579 (diff) | |
| download | enigma2-549ed3c87c4d3fe093472aa199ca6742c1f3654f.tar.gz enigma2-549ed3c87c4d3fe093472aa199ca6742c1f3654f.zip | |
replace "Arial" by "Regular"
Diffstat (limited to 'lib/gui/elistboxcontent.cpp')
| -rw-r--r-- | lib/gui/elistboxcontent.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/gui/elistboxcontent.cpp b/lib/gui/elistboxcontent.cpp index 95d92e09..6e49dcb5 100644 --- a/lib/gui/elistboxcontent.cpp +++ b/lib/gui/elistboxcontent.cpp @@ -110,7 +110,7 @@ void eListboxTestContent::setSize(const eSize &size) void eListboxTestContent::paint(gPainter &painter, eWindowStyle &style, const ePoint &offset, int selected) { - ePtr<gFont> fnt = new gFont("Arial", 20); + ePtr<gFont> fnt = new gFont("Regular", 20); painter.clip(eRect(offset, m_size)); style.setStyle(painter, selected ? eWindowStyle::styleListboxSelected : eWindowStyle::styleListboxNormal); painter.clear(); @@ -219,7 +219,7 @@ void eListboxStringContent::setSize(const eSize &size) void eListboxStringContent::paint(gPainter &painter, eWindowStyle &style, const ePoint &offset, int selected) { - ePtr<gFont> fnt = new gFont("Arial", 20); + ePtr<gFont> fnt = new gFont("Regular", 20); painter.clip(eRect(offset, m_itemsize)); style.setStyle(painter, selected ? eWindowStyle::styleListboxSelected : eWindowStyle::styleListboxNormal); painter.clear(); @@ -328,7 +328,7 @@ void eListboxPythonStringContent::setSize(const eSize &size) void eListboxPythonStringContent::paint(gPainter &painter, eWindowStyle &style, const ePoint &offset, int selected) { - ePtr<gFont> fnt = new gFont("Arial", 20); + ePtr<gFont> fnt = new gFont("Regular", 20); painter.clip(eRect(offset, m_itemsize)); style.setStyle(painter, selected ? eWindowStyle::styleListboxSelected : eWindowStyle::styleListboxNormal); painter.clear(); @@ -398,8 +398,8 @@ void eListboxPythonStringContent::invalidate() void eListboxPythonConfigContent::paint(gPainter &painter, eWindowStyle &style, const ePoint &offset, int selected) { - ePtr<gFont> fnt = new gFont("Arial", 20); - ePtr<gFont> fnt2 = new gFont("Arial", 16); + ePtr<gFont> fnt = new gFont("Regular", 20); + ePtr<gFont> fnt2 = new gFont("Regular", 16); painter.clip(eRect(offset, m_itemsize)); style.setStyle(painter, selected ? eWindowStyle::styleListboxSelected : eWindowStyle::styleListboxNormal); painter.clear(); |
