From d9282272597e7ee1acb14a18400bc17c1cd9101e Mon Sep 17 00:00:00 2001 From: David Inglis Date: Thu, 4 Mar 2004 21:02:59 +0000 Subject: [PATCH] fixed https://bugs.eclipse.org/bugs/show_bug.cgi?id=53674 --- core/org.eclipse.cdt.ui/ChangeLog | 6 ++++++ .../eclipse/cdt/ui/dialogs/CygwinPEBinaryParserPage.java | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/core/org.eclipse.cdt.ui/ChangeLog b/core/org.eclipse.cdt.ui/ChangeLog index d14eaae0a81..1e37b6ca862 100644 --- a/core/org.eclipse.cdt.ui/ChangeLog +++ b/core/org.eclipse.cdt.ui/ChangeLog @@ -1,3 +1,9 @@ +2004-03-04 David Inglis + + Fixed https://bugs.eclipse.org/bugs/show_bug.cgi?id=53674 + + * src/org/eclipse/cdt/ui/dialogs/CygwinPEBinaryParserPage.java + 2004-03-03 Alain Magloire Fix to the CView. It was opening the file twice. diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/dialogs/CygwinPEBinaryParserPage.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/dialogs/CygwinPEBinaryParserPage.java index f98a6785fc3..824c9f82974 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/dialogs/CygwinPEBinaryParserPage.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/dialogs/CygwinPEBinaryParserPage.java @@ -140,7 +140,7 @@ public class CygwinPEBinaryParserPage extends AbstractCOptionPage { } fAddr2LineCommandText.setText((addr2line == null || addr2line.length() == 0) ? "addr2line" : addr2line); //$NON-NLS-1$; fCPPFiltCommandText.setText((cppfilt == null || cppfilt.length() == 0) ? "c++filt" : cppfilt); //$NON-NLS-1$; - fCygPathCommandText.setText((cygpath == null || cygpath.length() == 0) ? "cygpath" : cppfilt); //$NON-NLS-1$; + fCygPathCommandText.setText((cygpath == null || cygpath.length() == 0) ? "cygpath" : cygpath); //$NON-NLS-1$; } /* (non-Javadoc)