Minor: rename expect/actual icon constants

Reflect icons' content
This commit is contained in:
Pavel V. Talanov
2018-03-14 17:07:53 +01:00
parent 9c9cdee7f0
commit c86a6cf21d
2 changed files with 4 additions and 4 deletions
@@ -49,8 +49,8 @@ public interface KotlinIcons {
Icon SUSPEND_CALL = IconLoader.getIcon("/org/jetbrains/kotlin/idea/icons/suspendCall.png");
Icon FROM_EXPECTED = IconLoader.getIcon("/org/jetbrains/kotlin/idea/icons/actual.png");
Icon FROM_ACTUAL = IconLoader.getIcon("/org/jetbrains/kotlin/idea/icons/expect.png");
Icon ACTUAL = IconLoader.getIcon("/org/jetbrains/kotlin/idea/icons/actual.png");
Icon EXPECT = IconLoader.getIcon("/org/jetbrains/kotlin/idea/icons/expect.png");
Icon LAUNCH = IconLoader.getIcon("/org/jetbrains/kotlin/idea/icons/kotlin_launch_configuration.png");
@@ -353,7 +353,7 @@ private fun collectActualMarkers(declaration: KtNamedDeclaration,
val lineMarkerInfo = LineMarkerInfo(
anchor,
anchor.textRange,
KotlinIcons.FROM_EXPECTED,
KotlinIcons.ACTUAL,
Pass.LINE_MARKERS,
PLATFORM_ACTUAL.tooltip,
PLATFORM_ACTUAL.navigationHandler,
@@ -379,7 +379,7 @@ private fun collectExpectedMarkers(declaration: KtNamedDeclaration,
val lineMarkerInfo = LineMarkerInfo(
anchor,
anchor.textRange,
KotlinIcons.FROM_ACTUAL,
KotlinIcons.EXPECT,
Pass.LINE_MARKERS,
EXPECTED_DECLARATION.tooltip,
EXPECTED_DECLARATION.navigationHandler,