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 on_actionRecenter_triggered();
|
||||||
|
|
||||||
void open(const QString& fileName);
|
virtual void open(QString fileName);
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
void changed();
|
void changed();
|
||||||
|
|
@ -479,7 +479,7 @@ MainWindow::on_actionLoadPoints_triggered()
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
MainWindow::open(const QString& fileName)
|
MainWindow::open(QString fileName)
|
||||||
{
|
{
|
||||||
// wait cursor
|
// wait cursor
|
||||||
QApplication::setOverrideCursor(Qt::WaitCursor);
|
QApplication::setOverrideCursor(Qt::WaitCursor);
|
||||||
|
|
|
||||||
|
|
@ -65,7 +65,7 @@ public:
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
|
|
||||||
void open(const QString&);
|
virtual void open(QString);
|
||||||
|
|
||||||
void processInput(CGAL::Object o);
|
void processInput(CGAL::Object o);
|
||||||
|
|
||||||
|
|
@ -221,7 +221,7 @@ MainWindow::on_actionLoadLineAndCircularArcs_triggered()
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
MainWindow::open(const QString& fileName)
|
MainWindow::open(QString fileName)
|
||||||
{
|
{
|
||||||
std::ifstream ifs(qPrintable(fileName));
|
std::ifstream ifs(qPrintable(fileName));
|
||||||
char c;
|
char c;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue