From 7b1ed003fd059598748de51b172c2f5660c92154 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Tue, 1 Aug 2017 17:31:28 +0100 Subject: make *_by_window private MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ibcee381a11541824cd989d56bad0811bc149e5f2 Reviewed-on: https://gerrit.libreoffice.org/40646 Tested-by: Jenkins Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- include/vcl/builder.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/vcl/builder.hxx b/include/vcl/builder.hxx index 27a1f86a2d71..b2f6c94ca5e4 100644 --- a/include/vcl/builder.hxx +++ b/include/vcl/builder.hxx @@ -79,9 +79,6 @@ public: //given an sID return the response value for that widget short get_response(const vcl::Window *pWindow) const; - OString get_by_window(const vcl::Window *pWindow) const; - void delete_by_window(vcl::Window *pWindow); - //release ownership of pWindow, i.e. don't delete it void drop_ownership(const vcl::Window *pWindow); @@ -397,6 +394,9 @@ private: void cleanupWidgetOwnScrolling(vcl::Window *pScrollParent, vcl::Window *pWindow, stringmap &rMap); void set_response(const OString& sID, short nResponse); + + OString get_by_window(const vcl::Window *pWindow) const; + void delete_by_window(vcl::Window *pWindow); }; template -- cgit