summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/gui/descedit.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/deployment/gui/descedit.cxx')
-rw-r--r--desktop/source/deployment/gui/descedit.cxx10
1 files changed, 8 insertions, 2 deletions
diff --git a/desktop/source/deployment/gui/descedit.cxx b/desktop/source/deployment/gui/descedit.cxx
index 019202f89fe0..a7fb8b431678 100644
--- a/desktop/source/deployment/gui/descedit.cxx
+++ b/desktop/source/deployment/gui/descedit.cxx
@@ -18,6 +18,7 @@
*/
+#include <vcl/builder.hxx>
#include <vcl/scrbar.hxx>
#include <vcl/txtattr.hxx>
#include <vcl/xtextedt.hxx>
@@ -30,9 +31,9 @@ using dp_gui::DescriptionEdit;
// DescriptionEdit -------------------------------------------------------
-DescriptionEdit::DescriptionEdit( Window* pParent, const ResId& rResId ) :
+DescriptionEdit::DescriptionEdit( Window* pParent) :
- ExtMultiLineEdit( pParent, rResId ),
+ ExtMultiLineEdit( pParent),
m_bIsVerticalScrollBarHidden( true )
@@ -41,6 +42,11 @@ DescriptionEdit::DescriptionEdit( Window* pParent, const ResId& rResId ) :
}
+extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeDescriptionEdit(Window* pParent, VclBuilder::stringmap &)
+{
+ return new DescriptionEdit(pParent);
+}
+
void DescriptionEdit::Init()
{