diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-02-20 16:40:21 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-02-20 22:19:35 +0100 |
commit | f67efce371f06c0a98684a3446e0da894968dd33 (patch) | |
tree | e1f0e096017fcf1f4553e2d3eb908e71320807fe /svx | |
parent | e7e4871b2880f5690030b1b16978f2575eea3948 (diff) |
svx: simplify this
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/engine3d/scene3d.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/svx/source/engine3d/scene3d.cxx b/svx/source/engine3d/scene3d.cxx index b268213873d8..5081b50f5a0f 100644 --- a/svx/source/engine3d/scene3d.cxx +++ b/svx/source/engine3d/scene3d.cxx @@ -224,9 +224,7 @@ void E3dScene::SetDefaultAttributes(E3dDefaultAttributes& /*rDefault*/) { // For WIN95/NT turn off the FP-Exceptions #if defined(WNT) -#define SC_FPEXCEPTIONS_ON() _control87( _MCW_EM, 0 ) -#define SC_FPEXCEPTIONS_OFF() _control87( _MCW_EM, _MCW_EM ) - SC_FPEXCEPTIONS_OFF(); + _control87( _MCW_EM, _MCW_EM ) #endif // Set defaults |