summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-08-01 17:31:28 +0100
committerCaolán McNamara <caolanm@redhat.com>2017-08-02 10:37:09 +0200
commit7b1ed003fd059598748de51b172c2f5660c92154 (patch)
tree0a3c2e66620a4702ba4da219e5904e6ed496cfa3
parenttdf#110448: Remove "Memory" page from Options dialog (diff)
downloadcore-7b1ed003fd059598748de51b172c2f5660c92154.tar.gz
core-7b1ed003fd059598748de51b172c2f5660c92154.zip
make *_by_window private
Change-Id: Ibcee381a11541824cd989d56bad0811bc149e5f2 Reviewed-on: https://gerrit.libreoffice.org/40646 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r--include/vcl/builder.hxx6
1 files 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 <typename T>