I think my error is somehow in my connect statement, because I just added:

Qt Code:
  1. if (pic.isNull())
  2. qDebug() << "it's null";
To copy to clipboard, switch view to plain text mode 
to my setImage function and its returning null...
so i guess i'm doing something wrong in my connect statement.

is that the right way of passing the QPixmap attribute of a QLabel?
connect(label, SIGNAL(clicked(const QPixmap&)), this, SLOT(setImage(const QPixmap &)))

Thanks in advance.