Hi, i am using this code .............
Qt Code:
  1. QFile::QFile ( const QString & "proc.txt")
  2. {
  3. QFile file("prac.txt");
  4. if (!file.open(QIODevice::ReadOnly | QIODevice::Text))
  5. return;
  6.  
  7. while (!file.atEnd())
  8. {
  9. QByteArray line = file.readLine();
  10. //process_line(line);
  11. }
To copy to clipboard, switch view to plain text mode 

then i face this type of Error
warning: function 'QFile::QFile(const QString&)' is defined after prior declaration as dllimport: attribute ignored
reply Plz