Kaydet (Commit) 0c143419 authored tarafından Miklos Vajna's avatar Miklos Vajna

sfx2: silence bogus SfxObjectShell::isTiledRendering() warnings

It's expected that e.g. the basic ide doesn't override these methods.

Change-Id: Ie32002c8416c5c0cd81ddf010fa5156b0698560e
üst 791d8b4f
...@@ -643,12 +643,14 @@ bool SfxObjectShell::IsModifyPasswordEntered() ...@@ -643,12 +643,14 @@ bool SfxObjectShell::IsModifyPasswordEntered()
return pImp->m_bModifyPasswordEntered; return pImp->m_bModifyPasswordEntered;
} }
void SfxObjectShell::libreOfficeKitCallback(SAL_UNUSED_PARAMETER int nType, SAL_UNUSED_PARAMETER const char* pPayload) const { 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()); {
SAL_INFO("tiled-rendering", "SfxObjectShell::libreOfficeKitCallback interface not overridden for SfxObjectShell subclass typeId: " << typeid(*this).name());
} }
bool SfxObjectShell::isTiledRendering() const { bool SfxObjectShell::isTiledRendering() const
SAL_WARN("tiled-rendering", "LOK callback interface not overridden for SfxObjectShell subclass typeId: " << typeid(*this).name()); {
SAL_INFO("tiled-rendering", "SfxObjectShell::isTiledRendering interface not overridden for SfxObjectShell subclass typeId: " << typeid(*this).name());
return false; return false;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment