Kaydet (Commit) ce7d80c6 authored tarafından Zsolt Bölöny's avatar Zsolt Bölöny Kaydeden (comit) Adolfo Jayme Barrientos

fTools::getSmallValue() is not used anymore

Change-Id: I20ecd3078d1b0c5265929405484cda2cfd88060d
Reviewed-on: https://gerrit.libreoffice.org/15806Reviewed-by: 's avatarAdolfo Jayme Barrientos <fitojb@ubuntu.com>
Tested-by: 's avatarAdolfo Jayme Barrientos <fitojb@ubuntu.com>
üst 3e3390e9
......@@ -151,13 +151,10 @@ namespace basegfx
class BASEGFX_DLLPUBLIC fTools
{
public:
/// Get threshold value for equalZero and friends
static double getSmallValue() { return 0.000000001f; }
/// Compare against small value
static bool equalZero(const double& rfVal)
{
return (fabs(rfVal) <= getSmallValue());
return (fabs(rfVal) <= 0.000000001f);
}
/// Compare against given small value
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment