summaryrefslogtreecommitdiff
path: root/include/svx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svx')
-rw-r--r--include/svx/AccessibleTextHelper.hxx39
-rw-r--r--include/svx/chrtitem.hxx5
-rw-r--r--include/svx/e3dundo.hxx1
-rw-r--r--include/svx/sdr/contact/viewcontactoftextobj.hxx4
-rw-r--r--include/svx/svdpage.hxx1
5 files changed, 0 insertions, 50 deletions
diff --git a/include/svx/AccessibleTextHelper.hxx b/include/svx/AccessibleTextHelper.hxx
index 08585d19015d..d114217b16c0 100644
--- a/include/svx/AccessibleTextHelper.hxx
+++ b/include/svx/AccessibleTextHelper.hxx
@@ -206,13 +206,6 @@ namespace accessibility
*/
void SetEventSource( const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >& rInterface );
- /** Get the event source
-
- @return the interface that is set as the source for
- accessibility events sent by this object.
- */
- ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > GetEventSource() const;
-
/** Set offset of EditEngine/Outliner from parent
If the origin of the underlying EditEngine/Outliner does
@@ -229,12 +222,6 @@ namespace accessibility
*/
void SetOffset( const Point& rPoint );
- /** Query offset of EditEngine/Outliner from parent
-
- @return the offset in screen coordinates (i.e. pixel)
- */
- Point GetOffset() const;
-
/** Set offset the object adds to all children's indices
This can be used if the owner of this object has children
@@ -338,23 +325,6 @@ namespace accessibility
@attention Fires state change events, therefore, don't hold any mutex
- @param nEventId
- Id of the event to send, @see AccessibleEventId
-
- @param rNewValue
- The value we've changed into
-
- @param rOldValue
- The old value before the change
- */
- void FireEvent( const sal_Int16 nEventId,
- const ::com::sun::star::uno::Any& rNewValue = ::com::sun::star::uno::Any(),
- const ::com::sun::star::uno::Any& rOldValue = ::com::sun::star::uno::Any() ) const;
-
- /** Call this method to invoke all event listeners with the given event
-
- @attention Fires state change events, therefore, don't hold any mutex
-
@param rEvent
The event to send, @see AccessibleEventObject
@@ -362,15 +332,6 @@ namespace accessibility
// TODO: make that virtual next time
void FireEvent( const ::com::sun::star::accessibility::AccessibleEventObject& rEvent ) const;
- /** Query select state of the text managed by this object
-
- @attention Don't call with locked mutexes. You may hold
- the solar mutex, but this method acquires it anyway.
-
- @return sal_True, if the text or parts of it are currently selected
- */
- bool IsSelected() const;
-
// XAccessibleContext child handling methods
/** Implements getAccessibleChildCount
diff --git a/include/svx/chrtitem.hxx b/include/svx/chrtitem.hxx
index 3371a15e2a07..9a19a18807e7 100644
--- a/include/svx/chrtitem.hxx
+++ b/include/svx/chrtitem.hxx
@@ -323,11 +323,6 @@ public:
virtual SfxPoolItem* Create(SvStream& rIn, sal_uInt16 nVersion) const SAL_OVERRIDE;
virtual SvStream& Store(SvStream& rOut, sal_uInt16 nItemVersion ) const SAL_OVERRIDE;
- double GetMin() const;
- double GetMax() const;
-
- SfxFieldUnit GetUnit() const;
-
double GetValue() const { return fVal; }
void SetValue(double fNewVal) { fVal = fNewVal; }
};
diff --git a/include/svx/e3dundo.hxx b/include/svx/e3dundo.hxx
index 0d87726917d7..40a22fa17b1b 100644
--- a/include/svx/e3dundo.hxx
+++ b/include/svx/e3dundo.hxx
@@ -104,7 +104,6 @@ class SVX_DLLPUBLIC E3dAttributesUndoAction : public SdrUndoAction
virtual bool CanRepeat(SfxRepeatTarget& rView) const SAL_OVERRIDE;
virtual void Undo() SAL_OVERRIDE;
virtual void Redo() SAL_OVERRIDE;
- void Repeat();
};
#endif // INCLUDED_SVX_E3DUNDO_HXX
diff --git a/include/svx/sdr/contact/viewcontactoftextobj.hxx b/include/svx/sdr/contact/viewcontactoftextobj.hxx
index 56c472285938..418ce1679f66 100644
--- a/include/svx/sdr/contact/viewcontactoftextobj.hxx
+++ b/include/svx/sdr/contact/viewcontactoftextobj.hxx
@@ -28,10 +28,6 @@ namespace sdr { namespace contact {
class ViewContactOfTextObj : public ViewContactOfSdrObj
{
-protected:
- // internal access to SdrTextObj
- const SdrTextObj& GetTextObj() const;
-
public:
// basic constructor, used from SdrObject.
explicit ViewContactOfTextObj(SdrTextObj& rTextObj);
diff --git a/include/svx/svdpage.hxx b/include/svx/svdpage.hxx
index 3f2cc06d1190..c05a5b80f4c0 100644
--- a/include/svx/svdpage.hxx
+++ b/include/svx/svdpage.hxx
@@ -150,7 +150,6 @@ public:
virtual SdrObject* NbcReplaceObject(SdrObject* pNewObj, size_t nObjNum);
virtual SdrObject* ReplaceObject(SdrObject* pNewObj, size_t nObjNum);
/// Modify ZOrder of an SdrObject
- SdrObject* NbcSetObjectOrdNum(size_t nOldObjNum, size_t nNewObjNum);
virtual SdrObject* SetObjectOrdNum(size_t nOldObjNum, size_t nNewObjNum);
void SetRectsDirty();