| Summary: | can't burn iso image from media:/... it says I can only select | ||
|---|---|---|---|
| Product: | [Applications] k3b | Reporter: | Francois Marier <francois> |
| Component: | general | Assignee: | Sebastian Trueg <trueg> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Debian testing | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Francois Marier
2005-12-11 18:57:48 UTC
SVN commit 487840 by trueg:
Support for media:// urls in the image writing dialogs.
BUG: 118127
M +2 -0 ChangeLog
M +1 -1 src/misc/k3bcdimagewritingdialog.cpp
M +1 -1 src/misc/k3bisoimagewritingdialog.cpp
--- branches/stable/extragear/multimedia/k3b/ChangeLog #487839:487840
@@ -13,6 +13,8 @@
* Automatically use a newly installed version of an external application at the next K3b start.
* Complete new set of K3b action icons for project types and tools. Many thanks to Marcel Dierkes.
* Show text on the burn button to make it catch the eye.
+ * Support for media:// urls in the Image writing dialogs.
+ * Fixed problems with files bigger than 2 GB on some systems.
0.12.8
======
--- branches/stable/extragear/multimedia/k3b/src/misc/k3bcdimagewritingdialog.cpp #487839:487840
@@ -969,7 +969,7 @@
QString K3bCdImageWritingDialog::imagePath() const
{
- return KURL::fromPathOrURL( m_editImagePath->url() ).path();
+ return K3b::convertToLocalUrl( KURL::fromPathOrURL( m_editImagePath->url() ) ).path();
}
--- branches/stable/extragear/multimedia/k3b/src/misc/k3bisoimagewritingdialog.cpp #487839:487840
@@ -494,7 +494,7 @@
QString K3bIsoImageWritingDialog::imagePath() const
{
- return KURL::fromPathOrURL( m_editImagePath->url() ).path();
+ return K3b::convertToLocalUrl( KURL::fromPathOrURL( m_editImagePath->url() ) ).path();
}
|