summaryrefslogtreecommitdiff
path: root/include/vcl/weld.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/weld.hxx')
-rw-r--r--include/vcl/weld.hxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx
index 4dfbeb9317bc..d5fd850fdcc4 100644
--- a/include/vcl/weld.hxx
+++ b/include/vcl/weld.hxx
@@ -27,8 +27,6 @@
#include <com/sun/star/accessibility/XAccessibleRelationSet.hpp>
#include <com/sun/star/accessibility/XAccessible.hpp>
-#include <boost/property_tree/ptree_fwd.hpp>
-
#include <assert.h>
#include <memory>
#include <vector>
@@ -250,8 +248,6 @@ public:
virtual css::uno::Reference<css::datatransfer::dnd::XDropTarget> get_drop_target() = 0;
- virtual boost::property_tree::ptree get_property_tree() const = 0;
-
virtual ~Widget() {}
};
@@ -628,17 +624,7 @@ public:
virtual int find_id(const OUString& rId) const = 0;
void remove_id(const OUString& rId) { remove(find_id(rId)); }
- /* m_aChangeHdl is called when the active item is changed. The can be due
- to the user selecting a different item from the list or while typing
- into the entry of a combo box with an entry.
-
- Use changed_by_menu() to discover whether an item was actually selected
- from the menu.
- */
void connect_changed(const Link<ComboBox&, void>& rLink) { m_aChangeHdl = rLink; }
-
- virtual bool changed_by_menu() const = 0;
-
virtual void connect_popup_toggled(const Link<ComboBox&, void>& rLink)
{
m_aPopupToggledHdl = rLink;