summaryrefslogtreecommitdiff
path: root/sw/inc/unoredline.hxx
diff options
context:
space:
mode:
authorAdam Co <rattles2013@gmail.com>2014-01-13 17:58:25 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-01-13 16:40:46 +0000
commit4a68f12691d4fd77652d824ccb4147e8ce643182 (patch)
treec27b37a5013d61441e3548fbbc6fac3f6158953b /sw/inc/unoredline.hxx
parentdbd42432c7b8f8149080bb13b103b35f2532eee8 (diff)
Renamed 'SwRedline' to 'SwRangeRedline'
This is in preparation to adding more types of 'SwRedlines'. Change-Id: Id61217ed3c4622f7689427ea9f30e364f6bb65d1 Reviewed-on: https://gerrit.libreoffice.org/7410 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'sw/inc/unoredline.hxx')
-rw-r--r--sw/inc/unoredline.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/inc/unoredline.hxx b/sw/inc/unoredline.hxx
index 25d2e7904ee9..4ef269008420 100644
--- a/sw/inc/unoredline.hxx
+++ b/sw/inc/unoredline.hxx
@@ -22,7 +22,7 @@
#include <unotext.hxx>
-class SwRedline;
+class SwRangeRedline;
/**
* SwXRedlineText provides an XText which may be used to write
@@ -71,9 +71,9 @@ class SwXRedline :
public SwClient
{
SwDoc* pDoc;
- SwRedline* pRedline;
+ SwRangeRedline* pRedline;
public:
- SwXRedline(SwRedline& rRedline, SwDoc& rDoc);
+ SwXRedline(SwRangeRedline& rRedline, SwDoc& rDoc);
~SwXRedline();
TYPEINFO();
@@ -105,7 +105,7 @@ public:
virtual ::com::sun::star::uno::Type SAL_CALL getElementType( ) throw(::com::sun::star::uno::RuntimeException);
virtual sal_Bool SAL_CALL hasElements( ) throw(::com::sun::star::uno::RuntimeException);
- const SwRedline* GetRedline() const {return pRedline;}
+ const SwRangeRedline* GetRedline() const {return pRedline;}
protected:
//SwClient
virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew);