Project

General

Profile

« Previous | Next » 

Revision d82999cd

Added by Katja Luther over 2 years ago

ref #9900: fix consistent use of abbrev title for authors of nomenclatural reference

View differences:

eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/dialog/selection/AbstractFilteredCdmResourceSelectionDialog.java
83 83
            this.cdmBaseToBeFiltered = new HashSet<>();
84 84
            objectsToBeFiltered.forEach(filter->this.cdmBaseToBeFiltered.add(filter.getUuid()));
85 85
        }
86
        Cursor cursor = shell.getCursor();
87
        shell.setCursor(shell.getDisplay().getSystemCursor(SWT.CURSOR_WAIT));
86
        Cursor cursor = null;
87
        if (shell != null){
88
        	cursor = shell.getCursor();
89
        	shell.setCursor(shell.getDisplay().getSystemCursor(SWT.CURSOR_WAIT));
90
        }
91
        
88 92
        init();
89
        shell.setCursor(cursor);
93
        if (shell != null){   
94
        	shell.setCursor(cursor);
95
        }
90 96
        setListLabelProvider(createListLabelProvider());
91 97

  
92 98
	}

Also available in: Unified diff