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 83057 Details for
Bug 208623
NullPointerException at org.eclipse.hyades.sdb.internal.actions.ActionHandlerListener.updateActions logged
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]
Patch file
patch_bugzilla208623_20071116.txt (text/plain), 1.14 KB, created by
Yasuhisa Gotoh
on 2007-11-16 06:42:25 EST
(
hide
)
Description:
Patch file
Filename:
MIME Type:
Creator:
Yasuhisa Gotoh
Created:
2007-11-16 06:42:25 EST
Size:
1.14 KB
patch
obsolete
>Index: src/org/eclipse/hyades/sdb/internal/actions/ActionHandlerListener.java >=================================================================== >RCS file: /cvsroot/tptp/monitoring/org.eclipse.hyades.sdb/src/org/eclipse/hyades/sdb/internal/actions/ActionHandlerListener.java,v >retrieving revision 1.2 >diff -u -r1.2 ActionHandlerListener.java >--- src/org/eclipse/hyades/sdb/internal/actions/ActionHandlerListener.java 7 May 2007 09:15:15 -0000 1.2 >+++ src/org/eclipse/hyades/sdb/internal/actions/ActionHandlerListener.java 16 Nov 2007 11:34:45 -0000 >@@ -343,12 +343,14 @@ > selectAll.setEnabled(false); > undo.setEnabled(false); > >- menuCut.setEnabled(false); >- menuCopy.setEnabled(false); >- menuPaste.setEnabled(false); >- menuDelete.setEnabled(false); >- menuSelectAll.setEnabled(false); >- menuUndo.setEnabled(false); >+ if (menuCut != null) { >+ menuCut.setEnabled(false); >+ menuCopy.setEnabled(false); >+ menuPaste.setEnabled(false); >+ menuDelete.setEnabled(false); >+ menuSelectAll.setEnabled(false); >+ menuUndo.setEnabled(false); >+ } > > } > actionBars.updateActionBars();
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 208623
:
83057
|
83208