[Digikam-devel] [Bug 116485] Mimimize button missing on "Compaq Flash Reader" camera window
Gilles Caulier
caulier.gilles at free.fr
Wed May 17 15:58:25 BST 2006
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=116485
caulier.gilles free fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From caulier.gilles free fr 2006-05-17 16:58 -------
SVN commit 541885 by cgilles:
digikam from stable : no need to use parent widget to create the cameragui instance like a real modal dialog. Now, you can minimize the camera dialog during pictures download.
CCMAIL: digikam-devel kde org
BUG: 116485
M +3 -2 cameraui.cpp
--- branches/stable/extragear/graphics/digikam/utilities/cameragui/cameraui.cpp #541884:541885
@ -70,10 +70,11 @
#include "cameraui.h"
#include "scanlib.h"
-CameraUI::CameraUI(QWidget* parent, const QString& title,
+CameraUI::CameraUI(QWidget* /*parent*/, const QString& title,
const QString& model, const QString& port,
const QString& path)
- : QDialog(parent, 0, false, WDestructiveClose)
+ : QDialog(0, // B.K.O # 116485: no parent for this modal dialog.
+ 0, false, WDestructiveClose)
{
// -- setup view -----------------------------------------
More information about the Digikam-devel
mailing list