mirror of https://github.com/CGAL/cgal
const QString& -> QString
This commit is contained in:
parent
cfc69020a5
commit
3dc854d29c
|
|
@ -108,7 +108,7 @@ public slots:
|
|||
|
||||
void on_actionRecenter_triggered();
|
||||
|
||||
void open(const QString& fileName);
|
||||
virtual void open(QString fileName);
|
||||
|
||||
signals:
|
||||
void changed();
|
||||
|
|
@ -479,7 +479,7 @@ MainWindow::on_actionLoadPoints_triggered()
|
|||
|
||||
|
||||
void
|
||||
MainWindow::open(const QString& fileName)
|
||||
MainWindow::open(QString fileName)
|
||||
{
|
||||
// wait cursor
|
||||
QApplication::setOverrideCursor(Qt::WaitCursor);
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ public:
|
|||
|
||||
public slots:
|
||||
|
||||
void open(const QString&);
|
||||
virtual void open(QString);
|
||||
|
||||
void processInput(CGAL::Object o);
|
||||
|
||||
|
|
@ -221,7 +221,7 @@ MainWindow::on_actionLoadLineAndCircularArcs_triggered()
|
|||
|
||||
|
||||
void
|
||||
MainWindow::open(const QString& fileName)
|
||||
MainWindow::open(QString fileName)
|
||||
{
|
||||
std::ifstream ifs(qPrintable(fileName));
|
||||
char c;
|
||||
|
|
|
|||
Loading…
Reference in New Issue