Esempio n. 1
0
        public string GetCommitMessage2(IntPtr hParentWnd, string parameters, string commonURL, string commonRoot, string[] pathList, string originalMessage, string bugID,
                                        out string bugIDOut, out string[] revPropNames, out string[] revPropValues)
        {
            bugIDOut = bugID;

            // If no revision properties are to be set,
            // the plug-in MUST return empty arrays.

            revPropNames  = new string[0];
            revPropValues = new string[0];

            return(GetCommitMessage(WindowHandleWrapper.TryCreate(hParentWnd), Parse(parameters), originalMessage));
        }
Esempio n. 2
0
 public string GetCommitMessage(IntPtr hParentWnd, string parameters, string commonRoot, string[] pathList, string originalMessage)
 {
     return(GetCommitMessage(WindowHandleWrapper.TryCreate(hParentWnd), Parse(parameters), originalMessage));
 }
Esempio n. 3
0
 public string ShowOptionsDialog(IntPtr hParentWnd, string parameters)
 {
     return(ShowOptionsDialog(WindowHandleWrapper.TryCreate(hParentWnd), parameters));
 }