summaryrefslogtreecommitdiff
path: root/screen.c
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2012-03-28 17:54:20 +0300
committerVille Skyttä <ville.skytta@iki.fi>2012-03-28 17:54:20 +0300
commite74a3437211bed8e483ce289b87c99f479849a35 (patch)
tree001af70ff6ffad80f37411f507d6b8b97217b92a /screen.c
parenteb464b67a9ea3ba12056d8f8353d28833dfe68e3 (diff)
downloadvdr-plugin-text2skin-e74a3437211bed8e483ce289b87c99f479849a35.tar.gz
vdr-plugin-text2skin-e74a3437211bed8e483ce289b87c99f479849a35.tar.bz2
Trim trailing whitespace.
Diffstat (limited to 'screen.c')
-rw-r--r--screen.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/screen.c b/screen.c
index 879d2f8..770bed0 100644
--- a/screen.c
+++ b/screen.c
@@ -9,13 +9,13 @@ cText2SkinScreen::cText2SkinScreen(bool OffScreen):
{
}
-cText2SkinScreen::~cText2SkinScreen()
+cText2SkinScreen::~cText2SkinScreen()
{
delete mScreen;
delete mOsd;
-}
+}
-eOsdError cText2SkinScreen::SetAreas(const tArea *Areas, int NumAreas)
+eOsdError cText2SkinScreen::SetAreas(const tArea *Areas, int NumAreas)
{
if (!mOffScreen) {
eOsdError result = mOsd->CanHandleAreas(Areas, NumAreas);
@@ -35,7 +35,7 @@ eOsdError cText2SkinScreen::SetAreas(const tArea *Areas, int NumAreas)
return oeOk;
}
-void cText2SkinScreen::Clear(void)
+void cText2SkinScreen::Clear(void)
{
for (int i = 0; i < mNumRegions; ++i) {
#ifndef DIRECTBLIT
@@ -67,7 +67,7 @@ void cText2SkinScreen::DrawBitmap(int x, int y, const cBitmap &Bitmap, const tCo
#endif
}
-void cText2SkinScreen::DrawRectangle(int x1, int y1, int x2, int y2, tColor Color)
+void cText2SkinScreen::DrawRectangle(int x1, int y1, int x2, int y2, tColor Color)
{
#ifndef DIRECTBLIT
for (int i = 0; i < mNumRegions; ++i)
@@ -77,8 +77,8 @@ void cText2SkinScreen::DrawRectangle(int x1, int y1, int x2, int y2, tColor Colo
#endif
}
-void cText2SkinScreen::DrawText(int x, int y, const char *s, tColor ColorFg, tColor ColorBg,
- const cFont *Font, int Width, int Height, int Alignment)
+void cText2SkinScreen::DrawText(int x, int y, const char *s, tColor ColorFg, tColor ColorBg,
+ const cFont *Font, int Width, int Height, int Alignment)
{
#ifndef DIRECTBLIT
for (int i = 0; i < mNumRegions; ++i)
@@ -88,7 +88,7 @@ void cText2SkinScreen::DrawText(int x, int y, const char *s, tColor ColorFg, tCo
#endif
}
-void cText2SkinScreen::DrawEllipse(int x1, int y1, int x2, int y2, tColor Color, int Quadrants)
+void cText2SkinScreen::DrawEllipse(int x1, int y1, int x2, int y2, tColor Color, int Quadrants)
{
#ifndef DIRECTBLIT
for (int i = 0; i < mNumRegions; ++i)
@@ -98,7 +98,7 @@ void cText2SkinScreen::DrawEllipse(int x1, int y1, int x2, int y2, tColor Color,
#endif
}
-void cText2SkinScreen::DrawSlope(int x1, int y1, int x2, int y2, tColor Color, int Type)
+void cText2SkinScreen::DrawSlope(int x1, int y1, int x2, int y2, tColor Color, int Type)
{
#ifndef DIRECTBLIT
for (int i = 0; i < mNumRegions; ++i)
@@ -108,7 +108,7 @@ void cText2SkinScreen::DrawSlope(int x1, int y1, int x2, int y2, tColor Color, i
#endif
}
-void cText2SkinScreen::Flush(void)
+void cText2SkinScreen::Flush(void)
{
for (int i = 0; i < mNumRegions; ++i) {
if (mOffScreen)
@@ -130,7 +130,7 @@ void cText2SkinScreen::Flush(void)
mOsd->Flush();
}
-void cText2SkinScreen::DrawBitmapOverlay(cBitmap &Dest, int x, int y, cBitmap &Bitmap,
+void cText2SkinScreen::DrawBitmapOverlay(cBitmap &Dest, int x, int y, cBitmap &Bitmap,
const tColor *ColorMask)
{
const tIndex *bitmap = Dest.Data(0, 0);