fixed uninitialised pixmap

This commit is contained in:
louis 2014-01-02 17:20:03 +01:00
parent 45428b5162
commit 5bd0ad2603
2 changed files with 6 additions and 6 deletions

View File

@ -106,7 +106,7 @@ msgid "Timer Timeline"
msgstr "Timer Zeitleiste"
msgid "Check for Timer Conflicts"
msgstr "Auf Timerkoflikte prüfen"
msgstr "Auf Timerkonflikte prüfen"
msgid "Search in Recordings"
msgstr "In Aufnahmen suchen"

View File

@ -2125,15 +2125,15 @@ void cRecMenuItemTimelineHeader::Draw(void) {
int xText = (width - font->Width(*header)) / 2;
int yText = (height/4 - font->Height())/2;
pixmap->DrawText(cPoint(xText, yText), *header, colorText, clrTransparent, font);
if (timer) {
DrawCurrentTimer();
}
DrawCurrentTimer();
}
void cRecMenuItemTimelineHeader::DrawCurrentTimer(void) {
int infoHeight = pixmapTimerInfo->ViewPort().Height();
pixmapTimerInfo->Fill(clrTransparent);
if (!timer)
return;
int infoHeight = pixmapTimerInfo->ViewPort().Height();
const cEvent *event = timer->Event();
const cChannel *channel = timer->Channel();
int x = 0;