Skip to content

Commit

Permalink
Added comboselectindex for Linux/Mac compatibilty
Browse files Browse the repository at this point in the history
Added comboselectindex for Linux/Mac compatibilty

QA Notes:
Testing Done:
Documentation Notes:
Bug Number:
Reviewed by:
Approved by:
Mailto:
  • Loading branch information
nagappan committed Sep 20, 2013
1 parent 8e2adc0 commit a3983b2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Ldtpd/Core.cs
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,12 @@ public int SelectIndex(String windowName, String objName, int index)
comboBox = null;
}
}
[XmlRpcMethod("comboselectindex",
Description = "Select combo box / layered pane item based on index.")]
public int ComboSelectIndex(String windowName, String objName, int index)
{
return SelectIndex(windowName, objName, index);
}
[XmlRpcMethod("getallitem",
Description = "Get all combo box item based on name.")]
public string[] GetAllItem(String windowName, String objName)
Expand Down

0 comments on commit a3983b2

Please sign in to comment.