Skip to content

Commit

Permalink
fixed: wrong title shown in yes/no dialog when prompting for movie-se…
Browse files Browse the repository at this point in the history
…t removal (closes xbmc#13094)
  • Loading branch information
mkortstiege committed Jun 11, 2012
1 parent 3277107 commit 8951f0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xbmc/video/windows/GUIWindowVideoNav.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ void CGUIWindowVideoNav::OnDeleteItem(CFileItemPtr pItem)
pItem->GetPath().size() > 14 && pItem->m_bIsFolder)
{
CGUIDialogYesNo* pDialog = (CGUIDialogYesNo*)g_windowManager.GetWindow(WINDOW_DIALOG_YES_NO);
pDialog->SetLine(0, g_localizeStrings.Get(432));
pDialog->SetHeading(432);
CStdString strLabel;
strLabel.Format(g_localizeStrings.Get(433),pItem->GetLabel());
pDialog->SetLine(1, strLabel);
Expand Down Expand Up @@ -1468,4 +1468,4 @@ void CGUIWindowVideoNav::ApplyWatchedFilter(CFileItemList &items)
}
}
}
}
}

0 comments on commit 8951f0b

Please sign in to comment.