diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-11-17 16:16:31 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-11-17 19:34:49 +0100 |
commit | 32625c819b60318934f27df628fe35f10d5eb25a (patch) | |
tree | 0ccf63e96c35d2c9020be4426614fdbd7e9c3938 /include/sfx2/frmdescr.hxx | |
parent | 5110cca39cc55c8977b81f7b09873e626144b29b (diff) |
Remove unused SfxFrameDescriptor::SetActualURL parameter
It got technically unused when e79e8117dcc7475d8d90afeaaac9eb7050ff244e
"loplugin:unusedfields in sfx2" removed SfxFrameDescriptor::aActualURL, which in
turn had apparently become unused over a series of commits cleaning up unused
code. The function looks like a misnomer now, and it is not clear to me whether
what it does is still useful (and whether or not all the clean-up that brought
us here was actually good), but lets leave the remains as they are for now.
Change-Id: I0479068176cc72193b2b44fc49d8fd3d71eadcb5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106013
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include/sfx2/frmdescr.hxx')
-rw-r--r-- | include/sfx2/frmdescr.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sfx2/frmdescr.hxx b/include/sfx2/frmdescr.hxx index 50df431b4c24..3901961fb639 100644 --- a/include/sfx2/frmdescr.hxx +++ b/include/sfx2/frmdescr.hxx @@ -66,7 +66,7 @@ public: const INetURLObject& GetURL() const { return aURL; } void SetURL( const OUString& rURL ); - void SetActualURL( std::u16string_view rURL ); + void SetActualURL(); // FrameName const OUString& GetName() const |