Quote Originally Posted by mickey
mmm my problem is this: when the SLOT below is called, I'd like a way to know, inside filesaveAs, who's the caller (ie myPopupmenu)
Qt Code:
  1. myPopupmenu->insertItem(QPixmap::fromMimeSource("icone215.png"),
  2. "&Save As", w, SLOT(fileSaveAs()), CTRL+Key_A );
To copy to clipboard, switch view to plain text mode 
with this SLOTfileSaveAs() is called; but I need to know, inside this SLOT, who's the sender...How do I capture the sender() in this case? thanks