Skip to content

Commit 0da9ea5

Browse files
committed
Don't use C API function from lsl:: namespace
1 parent b676f48 commit 0da9ea5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mainwindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ MainWindow::MainWindow(QWidget *parent, const char *config_file)
4444
connect(ui->actionAbout, &QAction::triggered, [this]() {
4545
QString infostr = QStringLiteral("LSL library version: ") +
4646
QString::number(lsl::library_version()) +
47-
"\nLSL library info:" + lsl::lsl_library_info();
47+
"\nLSL library info:" + lsl::library_info();
4848
QMessageBox::about(this, "About this app", infostr);
4949
});
5050
connect(ui->linkButton, &QPushButton::clicked, this, &MainWindow::toggleRecording);

0 commit comments

Comments
 (0)