diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-04-15 16:57:42 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-04-15 17:16:56 +0200 |
commit | 0c1434196e4ba0ef97c2f33c2335647410ad5ff8 (patch) | |
tree | 851f8877bc56f404d455927b35e9c4e49f0d4bb8 /sfx2/source/doc | |
parent | 791d8b4f1f656a8553c25fe9034ca8a350efaaae (diff) |
sfx2: silence bogus SfxObjectShell::isTiledRendering() warnings
It's expected that e.g. the basic ide doesn't override these methods.
Change-Id: Ie32002c8416c5c0cd81ddf010fa5156b0698560e
Diffstat (limited to 'sfx2/source/doc')
-rw-r--r-- | sfx2/source/doc/objcont.cxx | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/sfx2/source/doc/objcont.cxx b/sfx2/source/doc/objcont.cxx index 6fdc6916dd79..1a5452f63014 100644 --- a/sfx2/source/doc/objcont.cxx +++ b/sfx2/source/doc/objcont.cxx @@ -643,12 +643,14 @@ bool SfxObjectShell::IsModifyPasswordEntered() return pImp->m_bModifyPasswordEntered; } -void SfxObjectShell::libreOfficeKitCallback(SAL_UNUSED_PARAMETER int nType, SAL_UNUSED_PARAMETER const char* pPayload) const { - SAL_WARN("tiled-rendering", "LOK callback interface not overridden for SfxObjectShell subclass typeId: " << typeid(*this).name()); +void SfxObjectShell::libreOfficeKitCallback(SAL_UNUSED_PARAMETER int nType, SAL_UNUSED_PARAMETER const char* pPayload) const +{ + SAL_INFO("tiled-rendering", "SfxObjectShell::libreOfficeKitCallback interface not overridden for SfxObjectShell subclass typeId: " << typeid(*this).name()); } -bool SfxObjectShell::isTiledRendering() const { - SAL_WARN("tiled-rendering", "LOK callback interface not overridden for SfxObjectShell subclass typeId: " << typeid(*this).name()); +bool SfxObjectShell::isTiledRendering() const +{ + SAL_INFO("tiled-rendering", "SfxObjectShell::isTiledRendering interface not overridden for SfxObjectShell subclass typeId: " << typeid(*this).name()); return false; } |