Hi,

While I am trying to use LinkClicked Signal with webPage, in the slot I am not getting any processing.
Qt Code:
  1. page.linkClicked.connect(this , "clickLink(QUrl)");
  2.  
  3. public void clickLink(QUrl qurl){
  4. System.out.println("test");
  5.  
  6.  
  7. }
To copy to clipboard, switch view to plain text mode 

I am not getting "test" printed out on my console . Plzz help me where I am wrong.


Thanks In Advance