summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/drawinglayer/geometry/viewinformation2d.hxx2
-rw-r--r--include/drawinglayer/geometry/viewinformation3d.hxx9
-rw-r--r--include/unotools/compatibility.hxx12
3 files changed, 0 insertions, 23 deletions
diff --git a/include/drawinglayer/geometry/viewinformation2d.hxx b/include/drawinglayer/geometry/viewinformation2d.hxx
index 0cc385f1e49f..41d2365cc628 100644
--- a/include/drawinglayer/geometry/viewinformation2d.hxx
+++ b/include/drawinglayer/geometry/viewinformation2d.hxx
@@ -142,8 +142,6 @@ public:
DRAWINGLAYER_DLLPUBLIC ViewInformation2D
createViewInformation2D(const css::uno::Sequence<css::beans::PropertyValue>& rViewParameters);
-DRAWINGLAYER_DLLPUBLIC css::uno::Sequence<css::beans::PropertyValue>
-createPropertyValues(const ViewInformation2D& rViewInformation2D);
} // end of namespace drawinglayer::geometry
diff --git a/include/drawinglayer/geometry/viewinformation3d.hxx b/include/drawinglayer/geometry/viewinformation3d.hxx
index b2510328757b..ca368a6c3d3c 100644
--- a/include/drawinglayer/geometry/viewinformation3d.hxx
+++ b/include/drawinglayer/geometry/viewinformation3d.hxx
@@ -143,15 +143,6 @@ namespace drawinglayer::geometry
/// for convenience, the linear combination of the above four transformations is offered
const basegfx::B3DHomMatrix& getObjectToView() const;
- /** Get the uno::Sequence< beans::PropertyValue > which contains all ViewInformation
-
- Use this call if You need to extract all contained ViewInformation. The ones
- directly supported for convenience will be added to the ones only available
- as PropertyValues. This set completely describes this ViewInformation3D and
- can be used for complete information transport over UNO API.
- */
- const css::uno::Sequence< css::beans::PropertyValue >& getViewInformationSequence() const;
-
/** Get the uno::Sequence< beans::PropertyValue > which contains only ViewInformation
not offered directly
diff --git a/include/unotools/compatibility.hxx b/include/unotools/compatibility.hxx
index eae757103e6c..c74825c8f5bd 100644
--- a/include/unotools/compatibility.hxx
+++ b/include/unotools/compatibility.hxx
@@ -79,18 +79,6 @@ class SvtCompatibilityEntry
static constexpr OUStringLiteral USER_ENTRY_NAME = u"_user";
static constexpr OUStringLiteral DEFAULT_ENTRY_NAME = u"_default";
- static Index getIndex( std::u16string_view rName )
- {
- for ( int i = static_cast<int>(Index::Name); i < static_cast<int>(Index::INVALID); ++i )
- if ( getName( Index(i) ) == rName )
- return Index(i);
-
- /* SvtCompatibilityEntry::getIndex() Undeclared compatibility property name */
- assert(false);
-
- return Index::INVALID;
- }
-
static size_t getElementCount()
{
return static_cast<size_t>(Index::INVALID);