Skip to content

Commit

Permalink
Fix encoding of QgsPoint source files
Browse files Browse the repository at this point in the history
Allows editing these files in QtCreator.
  • Loading branch information
nyalldawson committed Nov 5, 2014
1 parent 068bb17 commit a987525
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/qgspoint.cpp
Expand Up @@ -71,7 +71,7 @@ double QgsVector::y() const
return m_y;
}

// perpendicular vector (rotated 90° counter-clockwise)
// perpendicular vector (rotated 90 degrees counter-clockwise)
QgsVector QgsVector::perpVector() const
{
return QgsVector( -m_y, m_x );
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgspoint.h
Expand Up @@ -46,7 +46,7 @@ class CORE_EXPORT QgsVector
double x() const;
double y() const;

// perpendicular vector (rotated 90° counter-clockwise)
// perpendicular vector (rotated 90 degrees counter-clockwise)
QgsVector perpVector() const;

double angle( void ) const;
Expand Down

0 comments on commit a987525

Please sign in to comment.