Skip to content

Commit

Permalink
Remove redundant null check.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert McNamara committed Jul 26, 2011
1 parent 3355fab commit e6d99b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythplugins/mythnetvision/mythnetvision/netsearch.cpp
Expand Up @@ -235,7 +235,7 @@ void NetSearch::showMenu(void)

if (item)
{
if (item && item->GetDownloadable())
if (item->GetDownloadable())
menuPopup->AddButton(tr("Stream Video"), SLOT(streamWebVideo()));
menuPopup->AddButton(tr("Open Web Link"), SLOT(showWebVideo()));

Expand Down

0 comments on commit e6d99b7

Please sign in to comment.