Hi,

This shows my ignorance, but in Qt3 I could do:

Qt Code:
  1. // Find the latest mtime...
  2. for (vector<string>::const_iterator iss = new_partitions->begin(); iss != new_partitions->end(); ++iss) {
  3. QString this_string = (*iss);
To copy to clipboard, switch view to plain text mode 

to which I get an error:

Qt Code:
  1. do_test_gpc.cpp:323: error: conversion from 'const std::basic_string<char, std::char_traits<char>, std::allocato
  2. r<char> >' to non-scalar type 'QString' requested
To copy to clipboard, switch view to plain text mode 

Could someone point out what should be done instead?
Thanks!