diff options
author | maho <maho@FreeBSD.org> | 2006-11-04 11:40:09 +0800 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2006-11-04 11:40:09 +0800 |
commit | b76b003210e298f57f152a1660acbe09861ba45e (patch) | |
tree | 5f7f616865157169117a88906044ef45720f2f67 /editors/openoffice-3 | |
parent | 6ae612a3908ea71743fef29200e11cb0519a2fe4 (diff) | |
download | freebsd-ports-gnome-b76b003210e298f57f152a1660acbe09861ba45e.tar.gz freebsd-ports-gnome-b76b003210e298f57f152a1660acbe09861ba45e.tar.zst freebsd-ports-gnome-b76b003210e298f57f152a1660acbe09861ba45e.zip |
Fix a breakage when using recent version of gcc-4.1.
Diffstat (limited to 'editors/openoffice-3')
-rw-r--r-- | editors/openoffice-3/files/patch-i71039 | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/editors/openoffice-3/files/patch-i71039 b/editors/openoffice-3/files/patch-i71039 new file mode 100644 index 000000000000..8f0897bc862b --- /dev/null +++ b/editors/openoffice-3/files/patch-i71039 @@ -0,0 +1,34 @@ +--- binfilter/inc/bf_svx/svdobj.hxx.orig Mon Oct 23 13:47:55 2006 ++++ binfilter/inc/bf_svx/svdobj.hxx Mon Oct 23 13:48:08 2006 +@@ -265,7 +265,7 @@ + {} + virtual ~SdrObjUserData(); + +- virtual SdrObjUserData* Clone(SdrObject* pObj1) const = NULL; ++ virtual SdrObjUserData* Clone(SdrObject* pObj1) const = 0; + UINT32 GetInventor() const { return nInventor; } + UINT16 GetId() const { return nIdentifier; } + virtual void WriteData(SvStream& rOut); + +--- svx/inc/svdobj.hxx.orig Mon Oct 23 12:56:33 2006 ++++ svx/inc/svdobj.hxx Mon Oct 23 12:56:50 2006 +@@ -323,7 +323,7 @@ + {} + virtual ~SdrObjUserData(); + +- virtual SdrObjUserData* Clone(SdrObject* pObj1) const = NULL; ++ virtual SdrObjUserData* Clone(SdrObject* pObj1) const = 0; + UINT32 GetInventor() const { return nInventor; } + UINT16 GetId() const { return nIdentifier; } + //BFS01virtual void WriteData(SvStream& rOut); +--- sc/source/ui/inc/csvcontrol.hxx~ Fri Sep 9 06:17:47 2005 ++++ sc/source/ui/inc/csvcontrol.hxx Sat Nov 4 08:46:16 2006 +@@ -444,7 +444,7 @@ + + protected: + /** Derived classes create a new accessible object here. */ +- virtual ScAccessibleCsvControl* ImplCreateAccessible() = NULL; ++ virtual ScAccessibleCsvControl* ImplCreateAccessible() = 0; + }; + + |