diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2024-12-05 12:58:37 +0100 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2024-12-05 20:12:08 +0100 |
commit | 4453b2f65b13d6b7c11344f89695a2a01aaf955d (patch) | |
tree | 1fd4eb52eda6ff68c850090409ef291f2c3c0d54 /vcl/inc/osx/salobj.h | |
parent | 070b198961977ec0a3197d1ac85aa065b62c432c (diff) |
vcl: Return reference in SalObject::GetSystemData
... instead of a pointer, to make clear
that this is always non-null.
Change-Id: Ic0f92e672b08494cf3bfaa9a956cb78170bc1ad5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/177885
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'vcl/inc/osx/salobj.h')
-rw-r--r-- | vcl/inc/osx/salobj.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/osx/salobj.h b/vcl/inc/osx/salobj.h index 4c2ac88be6c1..0fc41c02d4c9 100644 --- a/vcl/inc/osx/salobj.h +++ b/vcl/inc/osx/salobj.h @@ -63,7 +63,7 @@ public: virtual void EndSetClipRegion() override; virtual void SetPosSize( tools::Long nX, tools::Long nY, tools::Long nWidth, tools::Long nHeight ) override; virtual void Show( bool bVisible ) override; - virtual const SystemEnvData* GetSystemData() const override; + virtual const SystemEnvData& GetSystemData() const override; }; #endif // INCLUDED_VCL_INC_OSX_SALOBJ_H |