GetSelectedPathsWithoutMeta() static private method

static private GetSelectedPathsWithoutMeta ( Unity.PlasticSCM.Editor.Views.PendingChanges.PendingChangesTreeView treeView ) : List
treeView Unity.PlasticSCM.Editor.Views.PendingChanges.PendingChangesTreeView
return List
Exemplo n.º 1
0
        void IOpenMenuOperations.OpenWithCustom(string exePath, string args)
        {
            List <string> selectedPaths = PendingChangesSelection.
                                          GetSelectedPathsWithoutMeta(mPendingChangesTreeView);

            OpenOperation.OpenWith(exePath, selectedPaths);
        }
Exemplo n.º 2
0
        void IOpenMenuOperations.Open()
        {
            List <string> selectedPaths = PendingChangesSelection.
                                          GetSelectedPathsWithoutMeta(mPendingChangesTreeView);

            FileSystemOperation.Open(selectedPaths);
        }
Exemplo n.º 3
0
        void IOpenMenuOperations.OpenInExplorer()
        {
            List <string> selectedPaths = PendingChangesSelection
                                          .GetSelectedPathsWithoutMeta(mPendingChangesTreeView);

            if (selectedPaths.Count < 1)
            {
                return;
            }

            FileSystemOperation.OpenInExplorer(selectedPaths[0]);
        }