Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 143920 Details for
Bug 247021
Project Explorer view does not refresh when the user changes the active configuration or source settings
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Updated patch based on CDT_6_0_0 tag
AbstractPage-247021.patch (text/plain), 1.57 KB, created by
Alex Freidin
on 2009-08-10 11:32:43 EDT
(
hide
)
Description:
Updated patch based on CDT_6_0_0 tag
Filename:
MIME Type:
Creator:
Alex Freidin
Created:
2009-08-10 11:32:43 EDT
Size:
1.57 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.cdt.ui >Index: src/org/eclipse/cdt/ui/newui/AbstractPage.java >=================================================================== >RCS file: /cvsroot/tools/org.eclipse.cdt/all/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/newui/AbstractPage.java,v >retrieving revision 1.69 >diff -u -r1.69 AbstractPage.java >--- src/org/eclipse/cdt/ui/newui/AbstractPage.java 14 Apr 2009 20:23:45 -0000 1.69 >+++ src/org/eclipse/cdt/ui/newui/AbstractPage.java 10 Aug 2009 15:33:42 -0000 >@@ -74,6 +74,7 @@ > import org.eclipse.ui.PlatformUI; > import org.eclipse.ui.actions.WorkspaceModifyDelegatingOperation; > import org.eclipse.ui.dialogs.PropertyPage; >+import org.eclipse.ui.navigator.CommonNavigator; > > import org.eclipse.cdt.core.CCorePlugin; > import org.eclipse.cdt.core.model.CoreModel; >@@ -1243,8 +1244,12 @@ > IWorkbenchPartReference refs[] = CUIPlugin.getActiveWorkbenchWindow().getActivePage().getViewReferences(); > for (IWorkbenchPartReference ref : refs) { > IWorkbenchPart part = ref.getPart(false); >- if (part != null && part instanceof IPropertyChangeListener) >- ((IPropertyChangeListener)part).propertyChange(new PropertyChangeEvent(res, PreferenceConstants.PREF_SHOW_CU_CHILDREN, null, null)); >+ if (part != null) { >+ if(part instanceof IPropertyChangeListener) >+ ((IPropertyChangeListener)part).propertyChange(new PropertyChangeEvent(res, PreferenceConstants.PREF_SHOW_CU_CHILDREN, null, null)); >+ else if (part instanceof CommonNavigator) >+ ((CommonNavigator)part).getCommonViewer().refresh(); >+ } > } > } >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 247021
:
112311
|
143920
|
144835