summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpmargins.hxx
diff options
context:
space:
mode:
authorPetr Mladek <pmladek@suse.cz>2010-10-08 17:06:15 +0100
committerMichael Meeks <michael.meeks@novell.com>2010-10-08 17:06:15 +0100
commitcb4c284c12008dd24cd8679890ca5f62c65f02d6 (patch)
tree3b89fcaa9887da1df5610d788d65a29ce3ec2c3a /lotuswordpro/source/filter/lwpmargins.hxx
parentcc316b39d9110c536e1758a4f814738ca209bb02 (diff)
Fix filter issues
Diffstat (limited to 'lotuswordpro/source/filter/lwpmargins.hxx')
-rw-r--r--lotuswordpro/source/filter/lwpmargins.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpmargins.hxx b/lotuswordpro/source/filter/lwpmargins.hxx
index b42deca94f32..291d411f4de5 100644
--- a/lotuswordpro/source/filter/lwpmargins.hxx
+++ b/lotuswordpro/source/filter/lwpmargins.hxx
@@ -113,5 +113,8 @@ inline double LwpMargins::GetMarginsValue(const sal_uInt8& nWhichSide)
return LwpTools::ConvertFromUnitsToMetric(m_nBottom);
break;
}
+ // FIXME: this is needed to avoid warning: control reaches end of non-void function
+ // a better solution would be to enum value for the parameter side
+ return 0;
}
-#endif \ No newline at end of file
+#endif