diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2011-07-26 02:48:59 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2011-07-26 14:57:33 +0200 |
commit | cd466bf5595fdf965ee9062392de1271b4284387 (patch) | |
tree | 7f6974e0246e9fca495de5178c74b4d589451cb0 /sd | |
parent | e67968c8a58741981923b0daa0d69c40802e58c1 (diff) |
fix typo: DeletePassords to DeletePasswords
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/dlg/dlgass.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/dlg/dlgass.cxx b/sd/source/ui/dlg/dlgass.cxx index 60c48c19c513..7a3e11adae3f 100644 --- a/sd/source/ui/dlg/dlgass.cxx +++ b/sd/source/ui/dlg/dlgass.cxx @@ -207,7 +207,7 @@ public: void SavePassword( SfxObjectShellLock xDoc, const String& rPath ); void RestorePassword( SfxItemSet* pSet, const String& rPath ); String GetPassword( const String rPath ); - void DeletePassords(); + void DeletePasswords(); boost::ptr_vector< PasswordEntry > maPasswordList; @@ -676,7 +676,7 @@ AssistentDlgImpl::~AssistentDlgImpl() { CloseDocShell(); - DeletePassords(); + DeletePasswords(); // Delete the template file infos. std::vector<TemplateDir*>::iterator I; @@ -1720,7 +1720,7 @@ String AssistentDlgImpl::GetPassword( const String rPath ) return String(); } -void AssistentDlgImpl::DeletePassords() +void AssistentDlgImpl::DeletePasswords() { maPasswordList.clear(); } |