diff options
| author | Peter Penz <[email protected]> | 2008-02-11 16:55:16 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2008-02-11 16:55:16 +0000 |
| commit | 142c7628e8687e7236f80ed23f26c80f87915d1f (patch) | |
| tree | 7c985df50e9abb6ce4fa7445ae301ebd3de00c41 /src | |
| parent | 846b21edf57e7aeb83e84ee68e9f61c5981fbacd (diff) | |
fixed crash when cancelling the "apply view properties" dialog
BUG: 156752
svn path=/trunk/KDE/kdebase/apps/; revision=773706
Diffstat (limited to 'src')
| -rw-r--r-- | src/viewpropsprogressinfo.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/viewpropsprogressinfo.cpp b/src/viewpropsprogressinfo.cpp index c841a1331..c073d3d46 100644 --- a/src/viewpropsprogressinfo.cpp +++ b/src/viewpropsprogressinfo.cpp @@ -136,10 +136,12 @@ void ViewPropsProgressInfo::cancelApplying() { if (m_dirSizeJob != 0) { m_dirSizeJob->kill(); + m_dirSizeJob = 0; } if (m_applyViewPropsJob != 0) { m_applyViewPropsJob->kill(); + m_applyViewPropsJob = 0; } } |
