diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-11 02:39:04 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-11 02:39:04 -0600 |
commit | 55f92ecb7c523723045fbbd3f543bd026e0529c8 (patch) | |
tree | 3afe2aef21538ea0929645d772ff50dad0a48153 /kmail/urlhandlermanager.cpp | |
parent | be8e6cb1e80a04639544c0730365f9c35c7c51ad (diff) | |
download | tdepim-55f92ecb7c523723045fbbd3f543bd026e0529c8.tar.gz tdepim-55f92ecb7c523723045fbbd3f543bd026e0529c8.zip |
Fix unintended rename
Diffstat (limited to 'kmail/urlhandlermanager.cpp')
-rw-r--r-- | kmail/urlhandlermanager.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kmail/urlhandlermanager.cpp b/kmail/urlhandlermanager.cpp index 7ce10ce1d..1a72cb27a 100644 --- a/kmail/urlhandlermanager.cpp +++ b/kmail/urlhandlermanager.cpp @@ -444,16 +444,16 @@ namespace { return true; } - if ( url.path() == "showAttachmentQuictdelist" ) { + if ( url.path() == "showAttachmentQuicklist" ) { w->saveRelativePosition(); - w->setShowAttachmentQuictdelist( true ); + w->setShowAttachmentQuicklist( true ); w->update( true ); return true; } - if ( url.path() == "hideAttachmentQuictdelist" ) { + if ( url.path() == "hideAttachmentQuicklist" ) { w->saveRelativePosition(); - w->setShowAttachmentQuictdelist( false ); + w->setShowAttachmentQuicklist( false ); w->update( true ); return true; } @@ -490,9 +490,9 @@ namespace { return i18n("Show signature details."); if ( url.path() == "hideSignatureDetails" ) return i18n("Hide signature details."); - if ( url.path() == "hideAttachmentQuictdelist" ) + if ( url.path() == "hideAttachmentQuicklist" ) return i18n( "Hide attachment list" ); - if ( url.path() == "showAttachmentQuictdelist" ) + if ( url.path() == "showAttachmentQuicklist" ) return i18n( "Show attachment list" ); } return TQString() ; |