diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-08-11 12:50:45 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-08-12 10:34:14 +0200 |
commit | db8e2693eddb8cb7e2e584e5d64f8fa47d04b5b4 (patch) | |
tree | 81037391d2cc084a05995d5c0814c9f8fa1e007b | |
parent | d66f49d3d0077bd8d6da11fc76204adf0c03d0e1 (diff) |
Fix typos
Change-Id: Id465a50e53b35d259a3fde91bfad35cebf1ce064
Reviewed-on: https://gerrit.libreoffice.org/77263
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r-- | filter/source/config/cache/filterfactory.hxx | 4 | ||||
-rw-r--r-- | include/svx/sdrpagewindow.hxx | 2 | ||||
-rw-r--r-- | include/svx/svdhdl.hxx | 2 | ||||
-rw-r--r-- | include/svx/svdmrkv.hxx | 6 | ||||
-rw-r--r-- | include/svx/svdpntv.hxx | 4 | ||||
-rw-r--r-- | include/svx/svdtrans.hxx | 2 | ||||
-rw-r--r-- | include/ucbhelper/interceptedinteraction.hxx | 4 |
7 files changed, 12 insertions, 12 deletions
diff --git a/filter/source/config/cache/filterfactory.hxx b/filter/source/config/cache/filterfactory.hxx index 45a7b5a3d50b..d46963afa652 100644 --- a/filter/source/config/cache/filterfactory.hxx +++ b/filter/source/config/cache/filterfactory.hxx @@ -141,7 +141,7 @@ class FilterFactory : public ::cppu::ImplInheritanceHelper< BaseContainer @descr Because this information is used at several places (and mostly an object instance of this class is not possible) - its implemented as a static function! + it's implemented as a static function! @return The fix uno implementation name of this class. */ @@ -152,7 +152,7 @@ class FilterFactory : public ::cppu::ImplInheritanceHelper< BaseContainer @descr Because this information is used at several places (and mostly an object instance of this class is not possible) - its implemented as a static function! + it's implemented as a static function! @return The fix list of uno services supported by this class. */ diff --git a/include/svx/sdrpagewindow.hxx b/include/svx/sdrpagewindow.hxx index b95daf0b5afe..7cd6d3fdf6fb 100644 --- a/include/svx/sdrpagewindow.hxx +++ b/include/svx/sdrpagewindow.hxx @@ -89,7 +89,7 @@ public: // #i26631# void ResetObjectContact(); - /** sets all elements in the view which support a design and a alive mode into the given mode + /** sets all elements in the view which support a design and an alive mode into the given mode */ void SetDesignMode( bool _bDesignMode ) const; }; diff --git a/include/svx/svdhdl.hxx b/include/svx/svdhdl.hxx index 6a787f608b55..a96e63b4ed6b 100644 --- a/include/svx/svdhdl.hxx +++ b/include/svx/svdhdl.hxx @@ -500,7 +500,7 @@ private: BitmapEx GetBitmapForHandle( const BitmapEx& rBitmap, int nSize ); - // evtl. shear and rotation, equal to the object's one to allow adaption of + // evtl. shear and rotation, equal to the object's one to allow adaptation of // the visualization handles double const mfShearX; double const mfRotation; diff --git a/include/svx/svdmrkv.hxx b/include/svx/svdmrkv.hxx index 05d7458f5b42..a593130163c0 100644 --- a/include/svx/svdmrkv.hxx +++ b/include/svx/svdmrkv.hxx @@ -423,11 +423,11 @@ public: // separately. The method returns sal_True, if at least one group was entered. void EnterMarkedGroup(); - // Rotation center point and start point of the axis of reflextion, respectively + // Rotation center point and start point of the axis of reflection, respectively const Point& GetRef1() const { return maRef1; } void SetRef1(const Point& rPt); - // End point of the axis of reflextion + // End point of the axis of reflection const Point& GetRef2() const { return maRef2; } void SetRef2(const Point& rPt); /// Get access to the view shell owning this draw view, if any. @@ -435,7 +435,7 @@ public: }; -// - Hit tolarances: +// - Hit tolerances: // It has to be declared in logical coordinates. So please translate the // wanted pixel value with PixelToLogic in Logical values. // Taking as example a logical value of 100: diff --git a/include/svx/svdpntv.hxx b/include/svx/svdpntv.hxx index 2267936d64db..393a8f607d99 100644 --- a/include/svx/svdpntv.hxx +++ b/include/svx/svdpntv.hxx @@ -436,10 +436,10 @@ public: void SetActiveLayer(const OUString& rName) { maActualLayer=rName; } const OUString& GetActiveLayer() const { return maActualLayer; } - /// Leave an object group of all visible Pages (like `chdir ..` in MSDOS) + /// Leave an object group of all visible Pages (like `chdir ..` in MS-DOS) void LeaveOneGroup(); - /// Leave all entered object groups of all visible Pages (like `chdir \` in MSDOS) + /// Leave all entered object groups of all visible Pages (like `chdir \` in MS-DOS) void LeaveAllGroup(); /// Determine, whether Leave is useful or not diff --git a/include/svx/svdtrans.hxx b/include/svx/svdtrans.hxx index e3365c1baaa2..51f43fcea15d 100644 --- a/include/svx/svdtrans.hxx +++ b/include/svx/svdtrans.hxx @@ -201,7 +201,7 @@ long GetLen(const Point& rPnt); * - Determining the shear angle from the line 0-3 to the perpendicular line. * * We need to keep in mind that the polygon can be mirrored when it was - * transformed in the mean time (e.g. mirror or resize with negative factor). + * transformed in the meantime (e.g. mirror or resize with negative factor). * In that case, we first need to normalize, by swapping points (0 with 3 and 1 * with 2), so that it has the right orientation. * diff --git a/include/ucbhelper/interceptedinteraction.hxx b/include/ucbhelper/interceptedinteraction.hxx index 52928dda00ec..b6a410ca3dba 100644 --- a/include/ucbhelper/interceptedinteraction.hxx +++ b/include/ucbhelper/interceptedinteraction.hxx @@ -77,8 +77,8 @@ class UCBHELPER_DLLPUBLIC InterceptedInteraction : public ::cppu::WeakImplHelper /** @short default ctor. @descr Such constructed object can't be used really. - Might it will crash if its used! - Don't forget to initialize all(!) members ... + Might it will crash if it's used! + Don't forget to initialize all(!) members... */ InterceptedRequest() { |