diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-05 13:55:45 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-05 13:55:45 -0500 |
commit | abb28b96f678c5acfaf4dd0266a3deff3d1c667a (patch) | |
tree | 9a04842d43dc2134e5460509bdf9f9bd96963b42 /kword | |
parent | 3b34db715bb2f79602a7b54b3f4aa9f3c7d656a2 (diff) | |
download | koffice-abb28b96f678c5acfaf4dd0266a3deff3d1c667a.tar.gz koffice-abb28b96f678c5acfaf4dd0266a3deff3d1c667a.zip |
Fix typos.
Diffstat (limited to 'kword')
-rw-r--r-- | kword/KWDocument.h | 2 | ||||
-rw-r--r-- | kword/KWTextFrameSet.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/kword/KWDocument.h b/kword/KWDocument.h index 3a32522e..d81d28c5 100644 --- a/kword/KWDocument.h +++ b/kword/KWDocument.h @@ -730,7 +730,7 @@ public: TQStringList listOfBookmarkName(KWViewMode * viewMode) const; void paragraphDeleted( KoTextParag *parag, KWFrameSet *frm); - void paragraphModified(KoTextParag* parag, int /*KoTextParag::ParagModifyType*/ type, int start, int lenght); + void paragraphModified(KoTextParag* parag, int /*KoTextParag::ParagModifyType*/ type, int start, int length); void initBookmarkList(); void loadImagesFromStore( KoStore *store ); diff --git a/kword/KWTextFrameSet.cpp b/kword/KWTextFrameSet.cpp index 540794f1..a9f3e6ac 100644 --- a/kword/KWTextFrameSet.cpp +++ b/kword/KWTextFrameSet.cpp @@ -177,9 +177,9 @@ void KWTextFrameSet::init() TQT_SLOT( slotParagraphModified(KoTextParag*, int, int, int) )); } -void KWTextFrameSet::slotParagraphModified(KoTextParag* _parag, int /*KoTextParag::ParagModifyType*/ _type, int start, int lenght) +void KWTextFrameSet::slotParagraphModified(KoTextParag* _parag, int /*KoTextParag::ParagModifyType*/ _type, int start, int length) { - kWordDocument()->paragraphModified(_parag, _type, start, lenght); + kWordDocument()->paragraphModified(_parag, _type, start, length); } void KWTextFrameSet::slotParagraphCreated(KoTextParag* /*_parag*/) |