diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-09-18 16:14:49 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-09-28 08:48:48 +0100 |
commit | 4d173556cfa07620c1ea7bd1ee044df02267879b (patch) | |
tree | 9d838af587c725fc00e1c1022577e6cb88f00ded /svx/source | |
parent | d23a61c697a81174a74fcbd78b43bd4482562af3 (diff) |
convert hard-coded layout of two-lines tabpage to .ui
Change-Id: I87da59af50420993303111dae0ec4456ae15cc20
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/dialog/fntctrl.cxx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/svx/source/dialog/fntctrl.cxx b/svx/source/dialog/fntctrl.cxx index 01e884805207..fb6f0e638d99 100644 --- a/svx/source/dialog/fntctrl.cxx +++ b/svx/source/dialog/fntctrl.cxx @@ -520,6 +520,18 @@ SvxFontPrevWindow::SvxFontPrevWindow( Window* pParent, const ResId& rId ) : Init(); } +SvxFontPrevWindow::SvxFontPrevWindow(Window* pParent) : + Window(pParent) +{ + Init(); +} + +extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeSvxFontPrevWindow(Window *pParent) +{ + SvxFontPrevWindow *pWindow = new SvxFontPrevWindow(pParent); + return pWindow; +} + SvxFontPrevWindow::~SvxFontPrevWindow() { delete pImpl; |