Browse Source

applied path from scott ferrett correctly

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@1109 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Markus Palme 20 years ago
parent
commit
15a53ad8dd
  1. 6
      src/Main/Core/Project/Src/Services/ResourceService/ResourceService.cs

6
src/Main/Core/Project/Src/Services/ResourceService/ResourceService.cs

@ -338,7 +338,11 @@ namespace ICSharpCode.Core @@ -338,7 +338,11 @@ namespace ICSharpCode.Core
if (s == null) {
foreach (ResourceManager resourceManger in strings) {
s = resourceManger.GetString(name);
try {
s = resourceManger.GetString(name);
}
catch (Exception) { }
if (s != null) {
break;
}

Loading…
Cancel
Save