1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-06 17:26:01 +02:00
This commit is contained in:
Mikhail Khodjaiants 2005-12-28 00:17:39 +00:00
parent 01b01243e5
commit 2286171d1c
4 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,9 @@
2005-12-27 Mikhail Khodjaiants
Cleanup.
* HTMLPrinter.java
* AbstractViewActionDelegate.java
* CDebugUIPlugin.java
2005-12-27 Mikhail Khodjaiants
Bug 109526: Support Eclipse-LazyStart and deprecate Eclipse-AutoStart.
* MANIFEST.MF

View file

@ -103,7 +103,7 @@ public class HTMLPrinter {
if (bgColor == null)
bgColor= new RGB(255,255, 225); // RGB value of info bg color on WindowsXP
insertPageProlog(buffer, position, bgColor); //$NON-NLS-1$
insertPageProlog(buffer, position, bgColor);
}
public static void addPageProlog(StringBuffer buffer) {

View file

@ -110,7 +110,7 @@ public abstract class AbstractViewActionDelegate extends ActionDelegate implemen
if ( !ms.isOK() ) {
IWorkbenchWindow window = CDebugUIPlugin.getActiveWorkbenchWindow();
if ( window != null ) {
CDebugUIPlugin.errorDialog( getErrorDialogMessage(), ms.getChildren()[0] ); //$NON-NLS-1$
CDebugUIPlugin.errorDialog( getErrorDialogMessage(), ms.getChildren()[0] );
}
else {
CDebugUIPlugin.log( ms );

View file

@ -169,7 +169,7 @@ public class CDebugUIPlugin extends AbstractUIPlugin {
log( t );
Shell shell = getActiveWorkbenchShell();
if ( shell != null ) {
IStatus status = new Status( IStatus.ERROR, getUniqueIdentifier(), IInternalCDebugUIConstants.INTERNAL_ERROR, t.getMessage(), null ); //$NON-NLS-1$
IStatus status = new Status( IStatus.ERROR, getUniqueIdentifier(), IInternalCDebugUIConstants.INTERNAL_ERROR, t.getMessage(), null );
ErrorDialog.openError( shell, UIMessages.getString( "CDebugUIPlugin.0" ), message, status ); //$NON-NLS-1$
}
}