diff options
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/core/view/viewsh.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sw/source/core/view/viewsh.cxx b/sw/source/core/view/viewsh.cxx index 5c2263bae620..c6cf0d324a9b 100644 --- a/sw/source/core/view/viewsh.cxx +++ b/sw/source/core/view/viewsh.cxx @@ -1813,6 +1813,16 @@ void touch_lo_draw_tile(void * context, int contextWidth, int contextHeight, int } } +extern "C" +Size touch_lo_get_content_size() +{ + SwWrtShell *pViewShell = GetActiveWrtShell(); + Size contentSize(0,0); + if (pViewShell) + { + } + return contentSize; +} #endif extern "C" void touch_ui_selection_none() {} |