@@ -33,35 +33,35 @@ public CodeExplorerViewModel(FolderHelper folderHelper, RubberduckParserState st
33
33
_refreshCommand = new DelegateCommand ( LogManager . GetCurrentClassLogger ( ) , param => _state . OnParseRequested ( this ) ,
34
34
param => ! IsBusy && _state . IsDirty ( ) ) ;
35
35
36
- _navigateCommand = commands . OfType < CodeExplorer_NavigateCommand > ( ) . FirstOrDefault ( ) ;
36
+ _navigateCommand = commands . OfType < CodeExplorerNavigateCommand > ( ) . FirstOrDefault ( ) ;
37
37
38
- _addTestModuleCommand = commands . OfType < CodeExplorer_AddTestModuleCommand > ( ) . FirstOrDefault ( ) ;
39
- _addStdModuleCommand = commands . OfType < CodeExplorer_AddStdModuleCommand > ( ) . FirstOrDefault ( ) ;
40
- _addClassModuleCommand = commands . OfType < CodeExplorer_AddClassModuleCommand > ( ) . FirstOrDefault ( ) ;
41
- _addUserFormCommand = commands . OfType < CodeExplorer_AddUserFormCommand > ( ) . FirstOrDefault ( ) ;
38
+ _addTestModuleCommand = commands . OfType < CodeExplorerAddTestModuleCommand > ( ) . FirstOrDefault ( ) ;
39
+ _addStdModuleCommand = commands . OfType < CodeExplorerAddStdModuleCommand > ( ) . FirstOrDefault ( ) ;
40
+ _addClassModuleCommand = commands . OfType < CodeExplorerAddClassModuleCommand > ( ) . FirstOrDefault ( ) ;
41
+ _addUserFormCommand = commands . OfType < CodeExplorerAddUserFormCommand > ( ) . FirstOrDefault ( ) ;
42
42
43
- _openDesignerCommand = commands . OfType < CodeExplorer_OpenDesignerCommand > ( ) . FirstOrDefault ( ) ;
44
- _openProjectPropertiesCommand = commands . OfType < CodeExplorer_OpenProjectPropertiesCommand > ( ) . FirstOrDefault ( ) ;
45
- _renameCommand = commands . OfType < CodeExplorer_RenameCommand > ( ) . FirstOrDefault ( ) ;
46
- _indenterCommand = commands . OfType < CodeExplorer_IndentCommand > ( ) . FirstOrDefault ( ) ;
43
+ _openDesignerCommand = commands . OfType < CodeExplorerOpenDesignerCommand > ( ) . FirstOrDefault ( ) ;
44
+ _openProjectPropertiesCommand = commands . OfType < CodeExplorerOpenProjectPropertiesCommand > ( ) . FirstOrDefault ( ) ;
45
+ _renameCommand = commands . OfType < CodeExplorerRenameCommand > ( ) . FirstOrDefault ( ) ;
46
+ _indenterCommand = commands . OfType < CodeExplorerIndentCommand > ( ) . FirstOrDefault ( ) ;
47
47
48
- _findAllReferencesCommand = commands . OfType < CodeExplorer_FindAllReferencesCommand > ( ) . FirstOrDefault ( ) ;
49
- _findAllImplementationsCommand = commands . OfType < CodeExplorer_FindAllImplementationsCommand > ( ) . FirstOrDefault ( ) ;
48
+ _findAllReferencesCommand = commands . OfType < CodeExplorerFindAllReferencesCommand > ( ) . FirstOrDefault ( ) ;
49
+ _findAllImplementationsCommand = commands . OfType < CodeExplorerFindAllImplementationsCommand > ( ) . FirstOrDefault ( ) ;
50
50
51
- _importCommand = commands . OfType < CodeExplorer_ImportCommand > ( ) . FirstOrDefault ( ) ;
52
- _exportCommand = commands . OfType < CodeExplorer_ExportCommand > ( ) . FirstOrDefault ( ) ;
53
- _externalRemoveCommand = commands . OfType < CodeExplorer_RemoveCommand > ( ) . FirstOrDefault ( ) ;
51
+ _importCommand = commands . OfType < CodeExplorerImportCommand > ( ) . FirstOrDefault ( ) ;
52
+ _exportCommand = commands . OfType < CodeExplorerExportCommand > ( ) . FirstOrDefault ( ) ;
53
+ _externalRemoveCommand = commands . OfType < CodeExplorerRemoveCommand > ( ) . FirstOrDefault ( ) ;
54
54
if ( _externalRemoveCommand != null )
55
55
{
56
56
_removeCommand = new DelegateCommand ( LogManager . GetCurrentClassLogger ( ) , ExecuteRemoveComand , _externalRemoveCommand . CanExecute ) ;
57
57
}
58
58
59
- _printCommand = commands . OfType < CodeExplorer_PrintCommand > ( ) . FirstOrDefault ( ) ;
59
+ _printCommand = commands . OfType < CodeExplorerPrintCommand > ( ) . FirstOrDefault ( ) ;
60
60
61
- _commitCommand = commands . OfType < CodeExplorer_CommitCommand > ( ) . FirstOrDefault ( ) ;
62
- _undoCommand = commands . OfType < CodeExplorer_UndoCommand > ( ) . FirstOrDefault ( ) ;
61
+ _commitCommand = commands . OfType < CodeExplorerCommitCommand > ( ) . FirstOrDefault ( ) ;
62
+ _undoCommand = commands . OfType < CodeExplorerUndoCommand > ( ) . FirstOrDefault ( ) ;
63
63
64
- _copyResultsCommand = commands . OfType < CodeExplorer_CopyResultsCommand > ( ) . FirstOrDefault ( ) ;
64
+ _copyResultsCommand = commands . OfType < CodeExplorerCopyResultsCommand > ( ) . FirstOrDefault ( ) ;
65
65
66
66
_setNameSortCommand = new DelegateCommand ( LogManager . GetCurrentClassLogger ( ) , param =>
67
67
{
0 commit comments