Skip to content

Commit d49d2a9

Browse files
committed
Fix broken resx namespace in Inspection results window.
1 parent 4f43877 commit d49d2a9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

RetailCoder.VBE/UI/Inspections/InspectionResultsControl.xaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -597,15 +597,15 @@
597597
<controls:LinkButton Margin="4"
598598
Visibility="{Binding CanExecuteQuickFixInModule, Converter={StaticResource BoolToVisibility}}"
599599
Command="{Binding QuickFixInModuleCommand}"
600-
Content="{Resx ResxName=Rubberduck.Inspections.InspectionsUI, Key=QuickFix_ThisModule}" />
600+
Content="{Resx ResxName=Rubberduck.Inspections.Resources.InspectionsUI, Key=QuickFix_ThisModule}" />
601601
<controls:LinkButton Margin="4"
602602
Visibility="{Binding CanExecuteQuickFixInProject, Converter={StaticResource BoolToVisibility}}"
603603
Command="{Binding QuickFixInProjectCommand}"
604-
Content="{Resx ResxName=Rubberduck.Inspections.InspectionsUI, Key=QuickFix_ThisProject}" />
604+
Content="{Resx ResxName=Rubberduck.Inspections.Resources.InspectionsUI, Key=QuickFix_ThisProject}" />
605605
<controls:LinkButton Margin="4"
606606
Visibility="{Binding CanDisableInspection, Converter={StaticResource BoolToVisibility}}"
607607
Command="{Binding DisableInspectionCommand}"
608-
Content="{Resx ResxName=Rubberduck.Inspections.InspectionsUI, Key=DisableThisInspection}" />
608+
Content="{Resx ResxName=Rubberduck.Inspections.Resources.InspectionsUI, Key=DisableThisInspection}" />
609609
</WrapPanel>
610610
</StackPanel>
611611
</Border>

0 commit comments

Comments
 (0)