summaryrefslogtreecommitdiff
path: root/writerperfect
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@collabora.com>2015-04-01 10:51:07 +0100
committerMichael Meeks <michael.meeks@collabora.com>2015-04-10 13:40:47 +0100
commitfa705935937b77e1f8b3859b848a2faccf5d88af (patch)
tree614d2bc6ea460e5e113018290d82ff98138126ac /writerperfect
parent4ff758fea152d6de492d472fba1f889592a3f696 (diff)
missing nullptr.
Change-Id: Iea2124d0b485e051df1136f63ba4113b2dbc6f84
Diffstat (limited to 'writerperfect')
-rw-r--r--writerperfect/source/writer/WordPerfectImportFilter.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/writerperfect/source/writer/WordPerfectImportFilter.cxx b/writerperfect/source/writer/WordPerfectImportFilter.cxx
index b60e592a0bd1..8d484dd3ba35 100644
--- a/writerperfect/source/writer/WordPerfectImportFilter.cxx
+++ b/writerperfect/source/writer/WordPerfectImportFilter.cxx
@@ -303,7 +303,7 @@ throw (RuntimeException, std::exception)
int unsuccessfulAttempts = 0;
while (true)
{
- ScopedVclPtrInstance< SfxPasswordDialog > aPasswdDlg(0);
+ ScopedVclPtrInstance< SfxPasswordDialog > aPasswdDlg(nullptr);
aPasswdDlg->SetMinLen(0);
if (!aPasswdDlg->Execute())
return com::sun::star::ui::dialogs::ExecutableDialogResults::CANCEL;