Bug 682041 followup - Add the missing return statement; r=need-to-learn-C++

This commit is contained in:
Ehsan Akhgari 2011-09-08 20:08:40 -04:00
Родитель a9ba996671
Коммит 12351f8a99
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -198,6 +198,7 @@ NS_IMETHODIMP DestroyWidgetRunnable::Run()
if (view && mWidget && mWidget == currentWidget) {
view->DestroyWidget();
}
return NS_OK;
}
nsIWidget* DestroyWidgetRunnable::GetWidget(nsIView** aOutView) const