┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinviewactionhandler.cpp
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2009-05-26 18:24:23 +0000
committerPeter Penz <[email protected]>2009-05-26 18:24:23 +0000
commitc848b945d44b3621d6418e6589ea5792003fa3c9 (patch)
treef08c03b4df8d135cfdbb34d205d6e184d57cb562 /src/dolphinviewactionhandler.cpp
parent13b535993e224f6150fc2bb90928a37b6a8078d2 (diff)
fixed krazy issues (see http://www.kdedevelopers.org/node/3919)
svn path=/trunk/KDE/kdebase/apps/; revision=973269
Diffstat (limited to 'src/dolphinviewactionhandler.cpp')
-rw-r--r--src/dolphinviewactionhandler.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/dolphinviewactionhandler.cpp b/src/dolphinviewactionhandler.cpp
index 71e9fd398..0885cceb9 100644
--- a/src/dolphinviewactionhandler.cpp
+++ b/src/dolphinviewactionhandler.cpp
@@ -539,8 +539,9 @@ void DolphinViewActionHandler::slotSortTriggered(QAction* action)
void DolphinViewActionHandler::slotAdjustViewProperties()
{
emit actionBeingHandled();
- ViewPropertiesDialog dlg(m_currentView);
- dlg.exec();
+ QPointer<ViewPropertiesDialog> dialog = new ViewPropertiesDialog(m_currentView);
+ dialog->exec();
+ delete dialog;
}
void DolphinViewActionHandler::slotFindFile()