mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-12-19 15:11:28 +01:00
2025-04-28 Fred Gleason <fredg@paravelsystems.com>
* Cleaned up numerous 'no such signal' runtime errors. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Edit Audio Export Settings
|
||||
//
|
||||
// (C) Copyright 2002-2022 Fred Gleason <fredg@paravelsystems.com>
|
||||
// (C) Copyright 2002-2025 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License version 2 as
|
||||
@@ -51,7 +51,7 @@ RDExportSettingsDialog::RDExportSettingsDialog(const QString &caption,
|
||||
// Format
|
||||
//
|
||||
lib_format_box=new QComboBox(this);
|
||||
connect(lib_format_box,SIGNAL(activated(const QString &)),
|
||||
connect(lib_format_box,SIGNAL(textActivated(const QString &)),
|
||||
this,SLOT(formatData(const QString &)));
|
||||
lib_format_label=new QLabel(tr("Format")+":",this);
|
||||
lib_format_label->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
|
||||
@@ -69,7 +69,7 @@ RDExportSettingsDialog::RDExportSettingsDialog(const QString &caption,
|
||||
// Sample Rate
|
||||
//
|
||||
lib_samprate_box=new QComboBox(this);
|
||||
connect(lib_samprate_box,SIGNAL(activated(const QString &)),
|
||||
connect(lib_samprate_box,SIGNAL(textActivated(const QString &)),
|
||||
this,SLOT(samprateData(const QString &)));
|
||||
lib_samprate_label=new QLabel(tr("Sample Rate")+":",this);
|
||||
lib_samprate_label->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
|
||||
@@ -82,7 +82,7 @@ RDExportSettingsDialog::RDExportSettingsDialog(const QString &caption,
|
||||
lib_bitrate_label->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
|
||||
lib_bitrate_label->setFont(labelFont());
|
||||
lib_bitrate_box=new QComboBox(this);
|
||||
connect(lib_bitrate_box,SIGNAL(activated(const QString &)),
|
||||
connect(lib_bitrate_box,SIGNAL(textActivated(const QString &)),
|
||||
this,SLOT(bitrateData(const QString &)));
|
||||
lib_bitrate_unit=new QLabel("kbps",this);
|
||||
lib_bitrate_unit->setAlignment(Qt::AlignLeft|Qt::AlignVCenter);
|
||||
|
||||
Reference in New Issue
Block a user