diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-01-08 17:13:20 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-01-12 11:06:41 +0100 |
commit | 8de39435246176ed3eb603c177c8c3d26f9027b9 (patch) | |
tree | c0e84eaacb06dd0911c94946ec48a9fdb64a47b8 /vcl/inc | |
parent | 8d8729cecd3b1707c936873ec02c9fbca3c66cf2 (diff) |
Add lok::Office::postKeyEvent()
Change-Id: Ib80a8dd433b22a5e88aaab8e11d5c42ced8097ae
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/headless/svpframe.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/inc/headless/svpframe.hxx b/vcl/inc/headless/svpframe.hxx index d2a786c6bd2d..85e5f6bb4c97 100644 --- a/vcl/inc/headless/svpframe.hxx +++ b/vcl/inc/headless/svpframe.hxx @@ -58,7 +58,7 @@ class SvpSalFrame : public SalFrame std::list< SvpSalGraphics* > m_aGraphics; - static SvpSalFrame* s_pFocusFrame; + SAL_DLLPUBLIC_EXPORT static SvpSalFrame* s_pFocusFrame; public: SvpSalFrame( SvpSalInstance* pInstance, SalFrame* pParent, @@ -137,7 +137,7 @@ public: virtual void SetApplicationID(const OUString &rApplicationID) SAL_OVERRIDE { (void) rApplicationID; } bool IsVisible() { return m_bVisible; } - static SvpSalFrame* GetFocusFrame() { return s_pFocusFrame; } + SAL_DLLPUBLIC_EXPORT static SvpSalFrame* GetFocusFrame() { return s_pFocusFrame; } }; |