┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinviewcontainer.cpp
diff options
context:
space:
mode:
authorCraig Drummond <[email protected]>2007-11-08 13:29:44 +0000
committerCraig Drummond <[email protected]>2007-11-08 13:29:44 +0000
commitad74c99bbc4b4907a0cec0b7c5e3b9b37e5bad5b (patch)
treedb3786836707029f923fc4289d44b25639424d90 /src/dolphinviewcontainer.cpp
parent824cdb67e77132b3f9e8a9e4b3a1dacbbadc0036 (diff)
Fix parentless dialogs
svn path=/trunk/KDE/kdebase/apps/; revision=734288
Diffstat (limited to 'src/dolphinviewcontainer.cpp')
-rw-r--r--src/dolphinviewcontainer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dolphinviewcontainer.cpp b/src/dolphinviewcontainer.cpp
index 1f419d099..f3a836b73 100644
--- a/src/dolphinviewcontainer.cpp
+++ b/src/dolphinviewcontainer.cpp
@@ -191,7 +191,7 @@ void DolphinViewContainer::renameSelectedItems()
if (items.count() > 1) {
// More than one item has been selected for renaming. Open
// a rename dialog and rename all items afterwards.
- RenameDialog dialog(items);
+ RenameDialog dialog(this, items);
if (dialog.exec() == QDialog::Rejected) {
return;
}
@@ -236,7 +236,7 @@ void DolphinViewContainer::renameSelectedItems()
// TODO: Think about using KFileItemDelegate as soon as it supports editing.
// Currently the RenameDialog is used, but I'm not sure whether inline renaming
// is a benefit for the user at all -> let's wait for some input first...
- RenameDialog dialog(items);
+ RenameDialog dialog(this, items);
if (dialog.exec() == QDialog::Rejected) {
return;
}