mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Removed warnings.
This commit is contained in:
parent
564881b2ed
commit
11577c15eb
6 changed files with 17 additions and 6 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
2003-02-05 Mikhail Khodjaiants
|
||||||
|
Removed warnings.
|
||||||
|
* AddAddressBreakpointActionDelegate.java
|
||||||
|
* AddExpressionActionDelegate.java
|
||||||
|
* CBreakpointPropertiesDialog.java
|
||||||
|
* CUISourceLocator.java
|
||||||
|
* SourceLookupBlock.java
|
||||||
|
|
||||||
2003-02-05 Mikhail Khodjaiants
|
2003-02-05 Mikhail Khodjaiants
|
||||||
Implementation of the 'Resume At C/C++ Line' action.
|
Implementation of the 'Resume At C/C++ Line' action.
|
||||||
* RunToLineActionDelegate.java
|
* RunToLineActionDelegate.java
|
||||||
|
|
|
@ -13,6 +13,7 @@ import org.eclipse.debug.core.model.IDebugElement;
|
||||||
import org.eclipse.debug.core.model.IDebugTarget;
|
import org.eclipse.debug.core.model.IDebugTarget;
|
||||||
import org.eclipse.jface.dialogs.IInputValidator;
|
import org.eclipse.jface.dialogs.IInputValidator;
|
||||||
import org.eclipse.jface.dialogs.InputDialog;
|
import org.eclipse.jface.dialogs.InputDialog;
|
||||||
|
import org.eclipse.jface.window.Window;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
|
@ -68,7 +69,7 @@ public class AddAddressBreakpointActionDelegate extends AbstractListenerActionDe
|
||||||
"Enter address:",
|
"Enter address:",
|
||||||
null,
|
null,
|
||||||
new AddressValidator() );
|
new AddressValidator() );
|
||||||
if ( dialog.open() == dialog.OK )
|
if ( dialog.open() == Window.OK )
|
||||||
{
|
{
|
||||||
CDebugModel.createAddressBreakpoint( ((IExecFileInfo)getDebugTarget( element ).getAdapter( IExecFileInfo.class )).getExecFile(),
|
CDebugModel.createAddressBreakpoint( ((IExecFileInfo)getDebugTarget( element ).getAdapter( IExecFileInfo.class )).getExecFile(),
|
||||||
parseValue( dialog.getValue().trim() ),
|
parseValue( dialog.getValue().trim() ),
|
||||||
|
|
|
@ -147,7 +147,7 @@ public class AddExpressionActionDelegate extends AbstractEditorActionDelegate
|
||||||
*/
|
*/
|
||||||
protected void showExpressionView()
|
protected void showExpressionView()
|
||||||
{
|
{
|
||||||
IWorkbenchPage page = CDebugUIPlugin.getDefault().getActivePage();
|
IWorkbenchPage page = CDebugUIPlugin.getActivePage();
|
||||||
if ( page != null )
|
if ( page != null )
|
||||||
{
|
{
|
||||||
IViewPart part = page.findView( IDebugUIConstants.ID_EXPRESSION_VIEW );
|
IViewPart part = page.findView( IDebugUIConstants.ID_EXPRESSION_VIEW );
|
||||||
|
@ -159,7 +159,7 @@ public class AddExpressionActionDelegate extends AbstractEditorActionDelegate
|
||||||
}
|
}
|
||||||
catch( PartInitException e )
|
catch( PartInitException e )
|
||||||
{
|
{
|
||||||
CDebugUIPlugin.getDefault().log( e.getStatus() );
|
CDebugUIPlugin.log( e.getStatus() );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
@ -460,7 +460,7 @@ public class CBreakpointPropertiesDialog extends Dialog
|
||||||
fTitleImage.setBackground( bg );
|
fTitleImage.setBackground( bg );
|
||||||
fTitleImage.setImage( CDebugUIPlugin.getDefault().getImageRegistry().get( PREF_DLG_TITLE_IMG ) );
|
fTitleImage.setImage( CDebugUIPlugin.getDefault().getImageRegistry().get( PREF_DLG_TITLE_IMG ) );
|
||||||
gd = new GridData();
|
gd = new GridData();
|
||||||
gd.horizontalAlignment = gd.END;
|
gd.horizontalAlignment = GridData.END;
|
||||||
fTitleImage.setLayoutData( gd );
|
fTitleImage.setLayoutData( gd );
|
||||||
|
|
||||||
return fTitleArea;
|
return fTitleArea;
|
||||||
|
|
|
@ -21,6 +21,7 @@ import org.eclipse.core.runtime.IPath;
|
||||||
import org.eclipse.core.runtime.Path;
|
import org.eclipse.core.runtime.Path;
|
||||||
import org.eclipse.debug.core.model.IStackFrame;
|
import org.eclipse.debug.core.model.IStackFrame;
|
||||||
import org.eclipse.jface.dialogs.Dialog;
|
import org.eclipse.jface.dialogs.Dialog;
|
||||||
|
import org.eclipse.jface.window.Window;
|
||||||
import org.eclipse.jface.wizard.WizardDialog;
|
import org.eclipse.jface.wizard.WizardDialog;
|
||||||
import org.eclipse.swt.SWT;
|
import org.eclipse.swt.SWT;
|
||||||
import org.eclipse.swt.events.SelectionAdapter;
|
import org.eclipse.swt.events.SelectionAdapter;
|
||||||
|
@ -259,7 +260,7 @@ public class CUISourceLocator implements IAdaptable
|
||||||
wizard = new AddSourceLocationWizard( fSourceLocator.getSourceLocations() );
|
wizard = new AddSourceLocationWizard( fSourceLocator.getSourceLocations() );
|
||||||
}
|
}
|
||||||
WizardDialog dialog = new WizardDialog( CDebugUIPlugin.getActiveWorkbenchShell(), wizard );
|
WizardDialog dialog = new WizardDialog( CDebugUIPlugin.getActiveWorkbenchShell(), wizard );
|
||||||
if ( dialog.open() == dialog.OK )
|
if ( dialog.open() == Window.OK )
|
||||||
{
|
{
|
||||||
fSourceLocator.addSourceLocation( wizard.getSourceLocation() );
|
fSourceLocator.addSourceLocation( wizard.getSourceLocation() );
|
||||||
fNewLocationAttached = true;
|
fNewLocationAttached = true;
|
||||||
|
|
|
@ -17,6 +17,7 @@ import org.eclipse.cdt.debug.internal.ui.dialogfields.ListDialogField;
|
||||||
import org.eclipse.cdt.debug.internal.ui.wizards.AddSourceLocationWizard;
|
import org.eclipse.cdt.debug.internal.ui.wizards.AddSourceLocationWizard;
|
||||||
import org.eclipse.jface.resource.JFaceResources;
|
import org.eclipse.jface.resource.JFaceResources;
|
||||||
import org.eclipse.jface.viewers.LabelProvider;
|
import org.eclipse.jface.viewers.LabelProvider;
|
||||||
|
import org.eclipse.jface.window.Window;
|
||||||
import org.eclipse.jface.wizard.WizardDialog;
|
import org.eclipse.jface.wizard.WizardDialog;
|
||||||
import org.eclipse.swt.SWT;
|
import org.eclipse.swt.SWT;
|
||||||
import org.eclipse.swt.graphics.Image;
|
import org.eclipse.swt.graphics.Image;
|
||||||
|
@ -161,7 +162,7 @@ public class SourceLookupBlock
|
||||||
{
|
{
|
||||||
AddSourceLocationWizard wizard = new AddSourceLocationWizard( getSourceLocations() );
|
AddSourceLocationWizard wizard = new AddSourceLocationWizard( getSourceLocations() );
|
||||||
WizardDialog dialog = new WizardDialog( fControl.getShell(), wizard );
|
WizardDialog dialog = new WizardDialog( fControl.getShell(), wizard );
|
||||||
if ( dialog.open() == dialog.OK )
|
if ( dialog.open() == Window.OK )
|
||||||
{
|
{
|
||||||
fSourceListField.addElement( wizard.getSourceLocation() );
|
fSourceListField.addElement( wizard.getSourceLocation() );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue