From 53755324e3abc812521857bf05a2fbee6e0faea6 Mon Sep 17 00:00:00 2001 From: llea <llea> Date: Wed, 3 Aug 2005 17:33:01 +0000 Subject: [PATCH] Add device-name for audiodriver --- src/gui/qt/configurationpanel.ui.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/qt/configurationpanel.ui.h b/src/gui/qt/configurationpanel.ui.h index c47b199176..15bf76339d 100644 --- a/src/gui/qt/configurationpanel.ui.h +++ b/src/gui/qt/configurationpanel.ui.h @@ -79,14 +79,14 @@ void ConfigurationPanel::init() QString name = hostNameApi + " (device #" + QString::number(i) + ")"; // New radio button with found device name - QRadioButton* device = new QRadioButton(DriverChoice, name); + QRadioButton* device = new QRadioButton(DriverChoice); device->setGeometry( QRect( 10, 30 + top, 390, 21 ) ); // Set label of radio button - device->setText(name); + device->setText(devicename); // Add tooltip for each one - QToolTip::add(device , devicename ); + QToolTip::add(device , name ); top += 30; if (Manager::instance().defaultDevice(i)) { -- GitLab