summaryrefslogtreecommitdiff
path: root/toolkit/source
diff options
context:
space:
mode:
authorOcke Janssen [oj] <Ocke.Janssen@sun.com>2010-06-28 16:40:40 +0200
committerOcke Janssen [oj] <Ocke.Janssen@sun.com>2010-06-28 16:40:40 +0200
commit722441b99292269a42db1c0de6bce9351e8de933 (patch)
tree39bb469f94ce999bdbcd8bc509e0b19ed8c6e5fe /toolkit/source
parent012f5686a3fe76a8262f0849f9d2ed11335f20ba (diff)
unoawt2: add missing TOOLKIT_DLLPUBLIC to access classes
Diffstat (limited to 'toolkit/source')
-rw-r--r--toolkit/source/controls/unocontrols.cxx13
1 files changed, 11 insertions, 2 deletions
diff --git a/toolkit/source/controls/unocontrols.cxx b/toolkit/source/controls/unocontrols.cxx
index 92a8a21a6c08..6599b039600f 100644
--- a/toolkit/source/controls/unocontrols.cxx
+++ b/toolkit/source/controls/unocontrols.cxx
@@ -1834,7 +1834,9 @@ UnoControlListBoxModel::UnoControlListBoxModel( const UnoControlListBoxModel& i_
,m_aItemListListeners( GetMutex() )
{
}
-
+UnoControlListBoxModel::~UnoControlListBoxModel()
+{
+}
// ---------------------------------------------------------------------------------------------------------------------
::rtl::OUString UnoControlListBoxModel::getServiceName() throw(::com::sun::star::uno::RuntimeException)
{
@@ -2674,7 +2676,14 @@ void SAL_CALL UnoListBoxControl::itemListChanged( const lang::EventObject& i_rEv
if ( xPeerListener.is() )
xPeerListener->itemListChanged( i_rEvent );
}
-
+ActionListenerMultiplexer& UnoListBoxControl::getActionListeners()
+{
+ return maActionListeners;
+}
+ItemListenerMultiplexer& UnoListBoxControl::getItemListeners()
+{
+ return maItemListeners;
+}
// ----------------------------------------------------
// class UnoControlComboBoxModel
// ----------------------------------------------------