summaryrefslogtreecommitdiff
path: root/cairomm
diff options
context:
space:
mode:
authorJonathon Jongsma <jjongsma@gnome.org>2008-12-20 09:55:05 -0600
committerJonathon Jongsma <jjongsma@gnome.org>2008-12-20 11:00:18 -0600
commit87a5ddbd0f2709bdeb1d12634a37ad762adc44ab (patch)
tree5d1acf4e1b7899193e4f373ac435f32148916314 /cairomm
parent31fbb2f05900cd42c51e7bea108b22b6cb74fc7d (diff)
scaled_matrix() -> scaling_matrix()
Diffstat (limited to 'cairomm')
-rw-r--r--cairomm/matrix.cc2
-rw-r--r--cairomm/matrix.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/cairomm/matrix.cc b/cairomm/matrix.cc
index 8c1d4d6..aa74882 100644
--- a/cairomm/matrix.cc
+++ b/cairomm/matrix.cc
@@ -44,7 +44,7 @@ Matrix translation_matrix(double tx, double ty)
return m;
}
-Matrix scaled_matrix(double sx, double sy)
+Matrix scaling_matrix(double sx, double sy)
{
Matrix m;
cairo_matrix_init_scale(&m, sx, sy);
diff --git a/cairomm/matrix.h b/cairomm/matrix.h
index 559eaa5..f7de82b 100644
--- a/cairomm/matrix.h
+++ b/cairomm/matrix.h
@@ -58,7 +58,7 @@ public:
* @sa identity_matrix()
* @sa rotation_matrix()
* @sa translation_matrix()
- * @sa scaled_matrix()
+ * @sa scaling_matrix()
*/
Matrix();
@@ -181,7 +181,7 @@ Matrix translation_matrix(double tx, double ty);
*
* @relates Matrix
*/
-Matrix scaled_matrix(double sx, double sy);
+Matrix scaling_matrix(double sx, double sy);
/** Returns a Matrix initialized to a transformation that rotates by radians.
*