greetings,
in the following code i am intializing a QString object
Qt Code:
  1. QString labelString;
  2. ...
  3. labelString.clear();
  4. labelString=QString("X%1 Y%2").arg(p.x()).arg(p.y()); //getting warning for this line
  5. ..
To copy to clipboard, switch view to plain text mode 

This code is resulting in warning

Warning: QString::arg() :Argument Missing : X1.2233 Y4.23232

I couldn't find out the cause of this. Sicne this code is used very frequently so its like getting 200 wanings in 1 sec.

quickNitin