Minor: rename expect/actual icon constants
Reflect icons' content
This commit is contained in:
@@ -49,8 +49,8 @@ public interface KotlinIcons {
|
|||||||
|
|
||||||
Icon SUSPEND_CALL = IconLoader.getIcon("/org/jetbrains/kotlin/idea/icons/suspendCall.png");
|
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 ACTUAL = IconLoader.getIcon("/org/jetbrains/kotlin/idea/icons/actual.png");
|
||||||
Icon FROM_ACTUAL = IconLoader.getIcon("/org/jetbrains/kotlin/idea/icons/expect.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");
|
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(
|
val lineMarkerInfo = LineMarkerInfo(
|
||||||
anchor,
|
anchor,
|
||||||
anchor.textRange,
|
anchor.textRange,
|
||||||
KotlinIcons.FROM_EXPECTED,
|
KotlinIcons.ACTUAL,
|
||||||
Pass.LINE_MARKERS,
|
Pass.LINE_MARKERS,
|
||||||
PLATFORM_ACTUAL.tooltip,
|
PLATFORM_ACTUAL.tooltip,
|
||||||
PLATFORM_ACTUAL.navigationHandler,
|
PLATFORM_ACTUAL.navigationHandler,
|
||||||
@@ -379,7 +379,7 @@ private fun collectExpectedMarkers(declaration: KtNamedDeclaration,
|
|||||||
val lineMarkerInfo = LineMarkerInfo(
|
val lineMarkerInfo = LineMarkerInfo(
|
||||||
anchor,
|
anchor,
|
||||||
anchor.textRange,
|
anchor.textRange,
|
||||||
KotlinIcons.FROM_ACTUAL,
|
KotlinIcons.EXPECT,
|
||||||
Pass.LINE_MARKERS,
|
Pass.LINE_MARKERS,
|
||||||
EXPECTED_DECLARATION.tooltip,
|
EXPECTED_DECLARATION.tooltip,
|
||||||
EXPECTED_DECLARATION.navigationHandler,
|
EXPECTED_DECLARATION.navigationHandler,
|
||||||
|
|||||||
Reference in New Issue
Block a user