Bug 147526 - [PATCH] "Erase Type" combo-box is empty in Tools | Erase CD-RW
Summary: [PATCH] "Erase Type" combo-box is empty in Tools | Erase CD-RW
Status: RESOLVED FIXED
Alias: None
Product: k3b
Classification: Applications
Component: general (show other bugs)
Version: unspecified
Platform: Debian testing Linux
: NOR normal
Target Milestone: ---
Assignee: Sebastian Trueg
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-07-04 08:59 UTC by Francois Marier
Modified: 2007-07-18 16:53 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments
Erase Type empty combo box patch (606 bytes, patch)
2007-07-04 09:00 UTC, Francois Marier
Details
What the problem looks like on Jiří Paleček's machine (8.64 KB, image/png)
2007-07-04 09:02 UTC, Francois Marier
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Francois Marier 2007-07-04 08:59:27 UTC
Version:           1.0.2 (using KDE KDE 3.5.7)
Installed from:    Debian testing/unstable Packages
OS:                Linux

Jiří Paleček <jpalecek@web.de> reported this bug on the Debian bug tracker (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=431491) and provided the attached patch which fixes the problem for him.

Also attached to this bug is a screenshot of the problem he saw on his machine.
Comment 1 Francois Marier 2007-07-04 09:00:44 UTC
Created attachment 21032 [details]
Erase Type empty combo box patch

This patch by Jiří Paleček apparently makes the problem go away.
Comment 2 Francois Marier 2007-07-04 09:02:06 UTC
Created attachment 21033 [details]
What the problem looks like on Jiří Paleček's machine
Comment 3 Sebastian Trueg 2007-07-18 16:53:37 UTC
SVN commit 689551 by trueg:

Make sure the blanking mode combo is populated.
Thanks to Jiří Jiri Palecek for the patch.

BUG: 147526


 M  +1 -0      k3bblankingdialog.cpp  


--- branches/stable/extragear/multimedia/k3b/src/misc/k3bblankingdialog.cpp #689550:689551
@@ -83,6 +83,7 @@
   connect( m_writerSelectionWidget, SIGNAL(writerChanged()), this, SLOT(slotWriterChanged()) );
   connect( m_writerSelectionWidget, SIGNAL(writingAppChanged(int)), this, SLOT(slotWritingAppChanged(int)) );
   slotWriterChanged();
+	slotWritingAppChanged( m_writerSelectionWidget->writingApp() );
 }