diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2015-03-05 05:07:44 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2015-03-05 05:41:26 +0100 |
commit | 844e85f38df237672dce1aa370bade4398cb3d8f (patch) | |
tree | f65f166c7e4b52f60a17338e97879c93fc655262 /kolourpaint | |
parent | 056e72b5016b5231277b02bc639a6229b2d286d9 (diff) | |
download | tdegraphics-844e85f38df237672dce1aa370bade4398cb3d8f.tar.gz tdegraphics-844e85f38df237672dce1aa370bade4398cb3d8f.zip |
Fix incorrectly renamed strings
(cherry picked from commit 357c5d375f2bbb11bafae91ecafe27bf7de60dc2)
Diffstat (limited to 'kolourpaint')
-rw-r--r-- | kolourpaint/kpview.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kolourpaint/kpview.h b/kolourpaint/kpview.h index 879c2b0e..a43eb12e 100644 --- a/kolourpaint/kpview.h +++ b/kolourpaint/kpview.h @@ -59,7 +59,7 @@ class kpViewScrollableContainer; class kpView : public TQWidget { Q_OBJECT - + public: /** @@ -148,8 +148,8 @@ public: /** * Sets the horizontal and vertical zoom levels. * - * @param hzoomQt::Horizontal zoom level. - * @param vzoomQt::Vertical zoom level. + * @param hzoom Horizontal zoom level. + * @param vzoom Vertical zoom level. * * If reimplementing, you must call this base implementation. */ @@ -228,7 +228,7 @@ protected slots: public: /** - * @param viewXQt::Horizontal position in view coordinates. + * @param viewX Horizontal position in view coordinates. * * @returns viewX transformed to document coordinates, based on the * origin() and zoomLevelX(). @@ -236,7 +236,7 @@ public: double transformViewToDocX (double viewX) const; /** - * @param viewYQt::Vertical position in view coordinates. + * @param viewY Vertical position in view coordinates. * * @returns viewY transformed to document coordinates, based on the * origin() and zoomLevelY(). @@ -265,7 +265,7 @@ public: /** - * @param docXQt::Horizontal position in document coordinates. + * @param docX Horizontal position in document coordinates. * * @returns docX transformed to view coordinates, based on the origin() * and zoomLevelX(). @@ -273,7 +273,7 @@ public: double transformDocToViewX (double docX) const; /** - * @param docYQt::Vertical position in document coordinates. + * @param docY Vertical position in document coordinates. * * @returns docY transformed to view coordinates, based on the origin() * and zoomLevelY(). @@ -313,8 +313,8 @@ public: */ TQPoint transformViewToOtherView (const TQPoint &viewPoint, const kpView *otherView); - - + + /** * @returns the approximate view width required to display the entire * document(), based on the zoom level only. @@ -374,7 +374,7 @@ public: * is set to queue updates. */ void updateQueuedArea (); - + void updateMicroFocusHint (const TQRect µFocusHint); @@ -484,7 +484,7 @@ protected: virtual void dragEnterEvent (TQDragEnterEvent *); virtual void dragLeaveEvent (TQDragLeaveEvent *); - + virtual void imStartEvent (TQIMEvent *e); virtual void imComposeEvent (TQIMEvent *e); virtual void imEndEvent (TQIMEvent *e); |