Hi all

I get an error which says: term does not evaluate to a function
the following is my constructor
Qt Code:
  1. CIm::CIm(QString filename, QWidget * p, const char * n, CV *Vi, WFlags f ) : ImBase( p, n ), m_Vi( Vi )
To copy to clipboard, switch view to plain text mode 
and the error occours on following twee lines:
Qt Code:
  1. FileA = &(Vi()->getFileA());
  2. FileB = &(Vi()->getFileB());
  3.  
  4. if ( FileA)
  5. {
  6. //
  7. }
  8. if ( FileB )
  9. {
  10. //
  11. }
To copy to clipboard, switch view to plain text mode 
can someone help me?
thanks in advance