From cfb0a1da4c4f3b12adcfceee318e420133eef39e Mon Sep 17 00:00:00 2001 From: Mikhail Khodjaiants Date: Fri, 2 Jul 2004 20:16:14 +0000 Subject: [PATCH] Fix for bug 68934: Debug into dll doesn't work. The "solib-search-path" and "stop-on-solib-events" options are not supported by gdb on CygWin. Removed the "Shared Libraries" tab from the "Debugger" page of the laaunch configuration dialog --- debug/org.eclipse.cdt.debug.mi.ui/ChangeLog | 7 +++++++ .../mi/internal/ui/CygwinDebuggerPage.java | 18 +++++++----------- 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/debug/org.eclipse.cdt.debug.mi.ui/ChangeLog b/debug/org.eclipse.cdt.debug.mi.ui/ChangeLog index 54d60acc587..f9868c75dfc 100644 --- a/debug/org.eclipse.cdt.debug.mi.ui/ChangeLog +++ b/debug/org.eclipse.cdt.debug.mi.ui/ChangeLog @@ -1,3 +1,10 @@ +2004-07-02 Mikhail Khodjaiants + Fix for bug 68934: Debug into dll doesn't work. + The "solib-search-path" and "stop-on-solib-events" options are not supported by gdb on CygWin. + Removed the "Shared Libraries" tab from the "Debugger" page of the laaunch configuration dialog + for the "CygWin Debugger" type. + * CygwinDebuggerPage.java + 2004-06-22 Mikhail Khodjaiants Replaced global resource bundles by messages. diff --git a/debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/CygwinDebuggerPage.java b/debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/CygwinDebuggerPage.java index 3725e64ac98..ab2dc248832 100644 --- a/debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/CygwinDebuggerPage.java +++ b/debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/CygwinDebuggerPage.java @@ -10,22 +10,18 @@ *******************************************************************************/ package org.eclipse.cdt.debug.mi.internal.ui; -import org.eclipse.swt.widgets.Composite; +import org.eclipse.swt.widgets.TabFolder; -public class CygwinDebuggerPage extends GDBDebuggerPage -{ - public String getName() - { +public class CygwinDebuggerPage extends GDBDebuggerPage { + + public String getName() { return MIUIMessages.getString( "CygwinDebuggerPage.0" ); //$NON-NLS-1$ } /* (non-Javadoc) - * @see org.eclipse.cdt.debug.mi.internal.ui.GDBDebuggerPage#createSolibBlock(org.eclipse.swt.widgets.Composite) + * @see org.eclipse.cdt.debug.mi.internal.ui.GDBDebuggerPage#createTabs(org.eclipse.swt.widgets.TabFolder) */ - public GDBSolibBlock createSolibBlock(Composite parent) - { - GDBSolibBlock block = new GDBSolibBlock(); - block.createBlock( parent, true, false, true ); - return block; + public void createTabs( TabFolder tabFolder ) { + createMainTab( tabFolder ); } }