summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2014-01-08 21:06:32 +0000
committerJohan B. C. Engelen <j.b.c.engelen@alumnus.utwente.nl>2014-01-08 21:06:32 +0000
commitda4e94431ce728aaa838ced7f04a09751e7cfd8b (patch)
treea42571fa5db2613e66b7b82dd852ebc97697acd6
parentfix warning, update comments (diff)
downloadinkscape-da4e94431ce728aaa838ced7f04a09751e7cfd8b.tar.gz
inkscape-da4e94431ce728aaa838ced7f04a09751e7cfd8b.zip
fix warnings
(bzr r12897)
-rw-r--r--src/extension/internal/wmf-inout.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/extension/internal/wmf-inout.cpp b/src/extension/internal/wmf-inout.cpp
index 3f37e4402..870e4061c 100644
--- a/src/extension/internal/wmf-inout.cpp
+++ b/src/extension/internal/wmf-inout.cpp
@@ -321,7 +321,7 @@ Wmf::save(Inkscape::Extension::Output *mod, SPDocument *doc, gchar const *filena
/* WMF has no worldTransform, so this always returns 1.0. Retain it to keep WMF and WMF in sync as much as possible.*/
-double Wmf::current_scale(PWMF_CALLBACK_DATA d){
+double Wmf::current_scale(PWMF_CALLBACK_DATA /*d*/){
return 1.0;
}
@@ -341,7 +341,7 @@ std::string Wmf::current_matrix(PWMF_CALLBACK_DATA d, double x, double y, int us
}
/* WMF has no worldTransform, so this always returns 0. Retain it to keep WMF and WMF in sync as much as possible.*/
-double Wmf::current_rotation(PWMF_CALLBACK_DATA d){
+double Wmf::current_rotation(PWMF_CALLBACK_DATA /*d*/){
return 0.0;
}
@@ -1025,7 +1025,7 @@ Wmf::_pix_y_to_point(PWMF_CALLBACK_DATA d, double py)
double
-Wmf::pix_to_x_point(PWMF_CALLBACK_DATA d, double px, double py)
+Wmf::pix_to_x_point(PWMF_CALLBACK_DATA d, double px, double /*py*/)
{
double x = _pix_x_to_point(d, px);
@@ -1033,7 +1033,7 @@ Wmf::pix_to_x_point(PWMF_CALLBACK_DATA d, double px, double py)
}
double
-Wmf::pix_to_y_point(PWMF_CALLBACK_DATA d, double px, double py)
+Wmf::pix_to_y_point(PWMF_CALLBACK_DATA d, double /*px*/, double py)
{
double y = _pix_y_to_point(d, py);