add signal in child1
Qt Code:
  1. void clickCounChanged(int)
To copy to clipboard, switch view to plain text mode 
and slot in child2
Qt Code:
  1. void setClickCount(int)
To copy to clipboard, switch view to plain text mode 
and then in super class make connection
Qt Code:
  1. connect(child1, SIGNAL(clickCounChanged(int)), child2, SLOT(setClickCount(int)));
To copy to clipboard, switch view to plain text mode 
or can't it be done?