Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Marshall committed Oct 16, 2012
1 parent 75ca5d3 commit 83601e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions xbmc/FileItem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ CFileItem::CFileItem(const CEpgInfoTag& tag)

if (!tag.Icon().IsEmpty())
{
SetThumbnailImage(tag.Icon());
SetArt("thumb", tag.Icon());
SetIconImage(tag.Icon());
}
}
Expand Down Expand Up @@ -218,7 +218,7 @@ CFileItem::CFileItem(const CPVRChannel& channel)

if (!channel.IconPath().IsEmpty())
{
SetThumbnailImage(channel.IconPath());
SetArt("thumb", channel.IconPath());
SetIconImage(channel.IconPath());
}

Expand Down Expand Up @@ -266,7 +266,7 @@ CFileItem::CFileItem(const CPVRTimerInfoTag& timer)

if (!timer.ChannelIcon().IsEmpty())
{
SetThumbnailImage(timer.ChannelIcon());
SetArt("thumb", timer.ChannelIcon());
SetIconImage(timer.ChannelIcon());
}
}
Expand Down

0 comments on commit 83601e7

Please sign in to comment.