IDs used to remove buttons in the Todo List view
You can remove buttons in the Todo List view by using the related IDs in the trace log.
IDs for Refresh
			Todo List, Export Todo
				List, Show Statistics, Select Groupings, and Turn
				On/Off Thumbnail Display buttons in the Todo List view are listed in the
				
		Processing
				[com.ixiasoft.dita.eclipse.gui.views.job.JobView] section of the trace
			log.Processing [com.ixiasoft.dita.eclipse.gui.views.job.JobView]    
   com.ixiasoft.dita.eclipse.gui.views.job.actions.RefreshJobListAction.:  
   com.ixiasoft.dita.eclipse.gui.views.job.actions.ExportTodoList.......:  
   com.ixiasoft.dita.eclipse.gui.views.job.actions.ShowJobViewStatisticsAction.:    
   com.ixiasoft.dita.eclipse.gui.views.job.JobViewGroupByCombo..........:     
   com.ixiasoft.dita.eclipse.gui.views.sidebar.actions.ShowThumbnails...:To remove a button from the Todo List view, enter its ID in a
				<removeditem> element and specify its type as
				org.eclipse.swt.widgets.Button. 
For example, to remove the Show Statistics button, enter the following
			code in the eclipseui.xml
			file:
	<section id="com.ixiasoft.dita.eclipse.gui.views.job.JobView">
   <removeditem id="com.ixiasoft.dita.eclipse.gui.views.job.actions.ExportTodoList" 
                type="org.eclipse.swt.widgets.Button"/>
   ...