Commit new feature: export to OFF file.

This commit is contained in:
Laurent Rineau 2008-04-08 08:53:24 +00:00
parent 320f06ab31
commit 774ed639ba
1 changed files with 2 additions and 2 deletions

View File

@ -256,9 +256,9 @@ void Polyhedral_surface::open(const QString& filename)
{
clear();
std::cerr << "Opening file \"" << filename.toLatin1().data() << "\"...";
std::cerr << "Opening file \"" << filename.toLocal8Bit() << "\"...";
QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
std::ifstream in(filename.toLatin1().data());
std::ifstream in(filename.toUtf8());
if(!in) return;
if(surface_ptr)