summaryrefslogtreecommitdiff
path: root/starmath/source/tmpdevice.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'starmath/source/tmpdevice.hxx')
-rw-r--r--starmath/source/tmpdevice.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/starmath/source/tmpdevice.hxx b/starmath/source/tmpdevice.hxx
index e7c812cd69f4..8fa3557cd89d 100644
--- a/starmath/source/tmpdevice.hxx
+++ b/starmath/source/tmpdevice.hxx
@@ -25,7 +25,7 @@
class SmTmpDevice
{
- OutputDevice &rOutDev;
+ OutputDevice& rOutDev;
SmTmpDevice(const SmTmpDevice&) = delete;
SmTmpDevice& operator=(const SmTmpDevice&) = delete;
@@ -33,15 +33,15 @@ class SmTmpDevice
Color GetTextColor(const Color& rTextColor);
public:
- SmTmpDevice(OutputDevice &rTheDev, bool bUseMap100th_mm);
+ SmTmpDevice(OutputDevice& rTheDev, bool bUseMap100th_mm);
~SmTmpDevice() COVERITY_NOEXCEPT_FALSE { rOutDev.Pop(); }
- void SetFont(const vcl::Font &rNewFont);
+ void SetFont(const vcl::Font& rNewFont);
void SetLineColor(const Color& rColor) { rOutDev.SetLineColor(GetTextColor(rColor)); }
void SetFillColor(const Color& rColor) { rOutDev.SetFillColor(GetTextColor(rColor)); }
- operator OutputDevice & () { return rOutDev; }
+ operator OutputDevice&() { return rOutDev; }
};
#endif