summaryrefslogtreecommitdiff
path: root/sw/source
diff options
context:
space:
mode:
authorMikhail Voytenko <mav@openoffice.org>2010-05-26 15:54:55 +0200
committerMikhail Voytenko <mav@openoffice.org>2010-05-26 15:54:55 +0200
commitd4837c2805f73af95e5234ad4bb2546f9501d910 (patch)
tree9a52d8a922cb5eada65d4529ee0128180f24cb22 /sw/source
parent792aff06d30089038e002f6611d9ba2774e8352a (diff)
fwk139: #i111034# integrate patch
Diffstat (limited to 'sw/source')
-rw-r--r--sw/source/ui/app/apphdl.cxx35
1 files changed, 25 insertions, 10 deletions
diff --git a/sw/source/ui/app/apphdl.cxx b/sw/source/ui/app/apphdl.cxx
index 8d8fc095b5be..653208aaf250 100644
--- a/sw/source/ui/app/apphdl.cxx
+++ b/sw/source/ui/app/apphdl.cxx
@@ -765,16 +765,31 @@ void SwModule::Notify( SfxBroadcaster& /*rBC*/, const SfxHint& rHint )
DELETEZ(pWebToolbarConfig) ;
DELETEZ(pAuthorNames) ;
DELETEZ(pDBConfig);
- pColorConfig->RemoveListener(this);
- DELETEZ(pColorConfig);
- pAccessibilityOptions->RemoveListener(this);
- DELETEZ(pAccessibilityOptions);
- pCTLOptions->RemoveListener(this);
- DELETEZ(pCTLOptions);
- pUserOptions->RemoveListener(this);
- DELETEZ(pUserOptions);
- pUndoOptions->RemoveListener(this);
- DELETEZ(pUndoOptions);
+ if( pColorConfig )
+ {
+ pColorConfig->RemoveListener(this);
+ DELETEZ(pColorConfig);
+ }
+ if( pAccessibilityOptions )
+ {
+ pAccessibilityOptions->RemoveListener(this);
+ DELETEZ(pAccessibilityOptions);
+ }
+ if( pCTLOptions )
+ {
+ pCTLOptions->RemoveListener(this);
+ DELETEZ(pCTLOptions);
+ }
+ if( pUserOptions )
+ {
+ pUserOptions->RemoveListener(this);
+ DELETEZ(pUserOptions);
+ }
+ if( pUndoOptions )
+ {
+ pUndoOptions->RemoveListener(this);
+ DELETEZ(pUndoOptions);
+ }
}
}
}