diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-09-16 23:34:21 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-09-16 23:34:21 +0900 |
commit | 00105125e3010438663b1355f6f1579476ee9510 (patch) | |
tree | 51e43d62f7c9900c007c92ad5e226bdc4bf9d4bc /kmix/kmix.cpp | |
parent | f0e311f71b7f02fb20e5db21a297a2c4caee9153 (diff) | |
download | tdemultimedia-00105125e3010438663b1355f6f1579476ee9510.tar.gz tdemultimedia-00105125e3010438663b1355f6f1579476ee9510.zip |
This is a temporary commit to save WIP done on this topic.feat/kmix/mixer-detection
Development of this feature will only resume after the release of R14.1.0.
Relates to bug 3159.
NOTE: this commit needs to be completed/reworked. It should not be
merged to master as is.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kmix/kmix.cpp')
-rw-r--r-- | kmix/kmix.cpp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/kmix/kmix.cpp b/kmix/kmix.cpp index 3ebf6729..9a786abe 100644 --- a/kmix/kmix.cpp +++ b/kmix/kmix.cpp @@ -546,8 +546,16 @@ void KMixWindow::stopVisibilityUpdates() m_visibilityUpdateAllowed = false; } -void -KMixWindow::slotHWInfo() { +void KMixWindow::updateMixers() +{ +tqWarning("MIKE <KMixWindow> update mixers ENTER"); + if (MixerToolBox::updateMixer(Mixer::mixers(), m_multiDriverMode, m_hwInfoString)) + { + initMixerWidgets(); + } +} + +void KMixWindow::slotHWInfo() { KMessageBox::information( 0, m_hwInfoString, i18n("Mixer Hardware Information") ); } |