On Sun, Sep 7, 2008 at 7:03 AM, D. Michael McIntyre <[EMAIL PROTECTED]> wrote: > src/sequencer/SequencerMmapper.cpp:64: error: no matching function for call > to 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >>::basic_string(QChar*)'
This is from std::string(m_fileName.data()) where m_fileName is a QString. This needs to be replaced by m_fileName.toStdString(). (Not qstrtostr(), because filenames want to be treated as the local encoding rather than utf8. I think.) Chris ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Rosegarden-devel mailing list [email protected] - use the link below to unsubscribe https://lists.sourceforge.net/lists/listinfo/rosegarden-devel
