Convert all calls to 'IconFont' to just 'Icon'

Summary: Mostly for consistency, we're not using other forms of icons and this makes all classes that use an icon call it in the same way.

Test Plan: tested uiexamples, lots of other random pages.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D15125
This commit is contained in:
Chad Little
2016-01-27 20:38:01 -08:00
parent 43b8581d72
commit 36158dbdc0
130 changed files with 212 additions and 306 deletions

View File

@@ -105,7 +105,7 @@ final class PhabricatorApplicationTransactionValueController
$icon = 'fa-minus-circle red';
}
$icon = id(new PHUIIconView())
->setIconFont($icon)
->setIcon($icon)
->setText(
ucfirst($rule['action']).' '.$rule_object->getRuleDescription());