diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-15 10:14:27 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-15 16:56:57 +0100 |
commit | cbc1176c14ae36293a9cb2acb895dc99111145d5 (patch) | |
tree | fd72565b9fd4bde3a6bfa85702321185d113bc0d /sfx2 | |
parent | 44add3e1f1274410f88ab2c81e4c674a05456f91 (diff) |
SfxMedium::IsRemote can be made const
Change-Id: Id6b14366d11c15ec1440482cfb725e497807fa2e
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/doc/docfile.cxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sfx2/source/doc/docfile.cxx b/sfx2/source/doc/docfile.cxx index 88582457bc06..54bb317816ba 100644 --- a/sfx2/source/doc/docfile.cxx +++ b/sfx2/source/doc/docfile.cxx @@ -2352,20 +2352,16 @@ void SfxMedium::GetMedium_Impl() } } - -bool SfxMedium::IsRemote() +bool SfxMedium::IsRemote() const { return pImp->m_bRemote; } - - void SfxMedium::SetUpdatePickList(bool bVal) { pImp->bUpdatePickList = bVal; } - bool SfxMedium::IsUpdatePickList() const { return pImp->bUpdatePickList; |