summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorKatarina Behrens <Katarina.Behrens@cib.de>2016-05-25 16:10:23 +0200
committerKatarina Behrens <Katarina.Behrens@cib.de>2016-05-30 20:18:01 +0000
commit697eaa91bd008e992b325e05ce3f20853ad965f7 (patch)
treee23100edec6cd604658ec2a781b6418c207e1b83 /vcl
parentf65b29ff13211449144455668014a80aa8b331a3 (diff)
tdf#100068: Initial implementation of ScreenshotId
it's the same as HelpId in default implementation and extended with '=?config=foo' string otherwise, depending on different configurations the dialog/tabpage can have (e.g. different widgets hidden/shown) Change-Id: I01312a5a88ef7ba784bca315b336420cdb63c8dc Reviewed-on: https://gerrit.libreoffice.org/25455 Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de> Tested-by: Katarina Behrens <Katarina.Behrens@cib.de>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/window/window2.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/vcl/source/window/window2.cxx b/vcl/source/window/window2.cxx
index 00475f1bb626..801943bfbd2b 100644
--- a/vcl/source/window/window2.cxx
+++ b/vcl/source/window/window2.cxx
@@ -909,6 +909,11 @@ const OString& Window::GetHelpId() const
return mpWindowImpl->maHelpId;
}
+OString Window::GetScreenshotId() const
+{
+ return GetHelpId();
+}
+
// --------- old inline methods ---------------
vcl::Window* Window::ImplGetWindow()