Skip to content

Commit cff8dab

Browse files
committed
fix reference to hostname: host
1 parent 6acf2be commit cff8dab

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/mainwindow.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,8 +354,8 @@ std::vector<lsl::stream_info> MainWindow::refreshStreams() {
354354
item->setToolTip(QString("Name: %1\nType: %2\nHostname: %3\nSource ID: %4")
355355
.arg(QString::fromStdString(k.name),
356356
QString::fromStdString(k.type),
357-
QString::fromStdString(k.hostname),
358-
QString::fromStdString(k.id)));
357+
QString::fromStdString(k.id),
358+
QString::fromStdString(k.host)));
359359
ui->streamList->addItem(item);
360360
}
361361

0 commit comments

Comments
 (0)