Hi,

I'm trying to switch my project from Windows Visual Studio to Linux using QtCreator.

I have a class that have this method:

Qt Code:
  1. virtual bool foo(class1*,int,int,QString&,QString&,class2* = NULL);
To copy to clipboard, switch view to plain text mode 

I used to use:
Qt Code:
  1. objPointer->foo(class1Pointer,0,0,QString(),QString());
To copy to clipboard, switch view to plain text mode 

This is not a problem using Visual Studio, but g++ tells me that there is "no matching function for call to ..."

Thanks,