mirror of
				https://projects.vdr-developer.org/git/vdr-plugin-tvguide.git
				synced 2023-10-05 13:01:48 +00:00 
			
		
		
		
	fixed uninitialised pixmap
This commit is contained in:
		@@ -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"
 | 
			
		||||
 
 | 
			
		||||
@@ -2126,14 +2126,14 @@ void cRecMenuItemTimelineHeader::Draw(void) {
 | 
			
		||||
    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;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user