mirror of
https://github.com/greenshot/greenshot
synced 2025-07-14 00:53:51 -07:00
Some oAuth fixes for Imgur & Photobucket. Still having problems with Photobucket...
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2026 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
daf24cdca0
commit
f447fb8b72
11 changed files with 165 additions and 118 deletions
|
@ -333,7 +333,18 @@ namespace GreenshotPlugin.Core {
|
|||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Retrieve the children with mathing classname
|
||||
/// </summary>
|
||||
public IEnumerable<WindowDetails> GetChilden(string childClassname) {
|
||||
foreach (WindowDetails child in Children) {
|
||||
if (childClassname.Equals(child.ClassName)) {
|
||||
yield return child;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public IntPtr ParentHandle {
|
||||
get {
|
||||
if (parentHandle == IntPtr.Zero) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue