Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] Missing resource fix for CDT Debug UI



A missing resource was found in an error message of the Shared Libraries view when trying to load symbols for all actions.

Cheers,
Tanya
Index: ChangeLog
===================================================================
retrieving revision 1.217
diff -u -r1.217 ChangeLog
--- ChangeLog	9 Mar 2004 21:31:28 -0000	1.217
+++ ChangeLog	11 Mar 2004 21:59:21 -0000
@@ -1,3 +1,7 @@
+2004-03-11 Tanya Wolff
+	Fix for missing resource in 
+	* LoadSymbolsForAllAction.java
+
 2004-03-09 Tanya Wolff
 	Added strings to properties file for views packages
 	* CDebugUIPluginResources.properties
Index: src/org/eclipse/cdt/debug/internal/ui/actions/LoadSymbolsForAllAction.java
===================================================================
retrieving revision 1.2
diff -u -r1.2 LoadSymbolsForAllAction.java
--- src/org/eclipse/cdt/debug/internal/ui/actions/LoadSymbolsForAllAction.java	4 Mar 2004 19:23:14 -0000	1.2
+++ src/org/eclipse/cdt/debug/internal/ui/actions/LoadSymbolsForAllAction.java	11 Mar 2004 21:59:25 -0000
@@ -72,7 +72,7 @@
 				}
 				catch( DebugException e )
 				{
-					CDebugUIPlugin.errorDialog( CDebugUIPlugin.getResourceString("ui.actions.LoadSymbolsForAllAction.Unable_to_load_symbols."), e.getStatus() ); //$NON-NLS-1$
+					CDebugUIPlugin.errorDialog( CDebugUIPlugin.getResourceString("internal.ui.actions.LoadSymbolsForAllAction.Unable_to_load_symbols."), e.getStatus() ); //$NON-NLS-1$
 				}
 			}
 		}

Back to the top