diff options
author | Noel Grandin <noel@peralex.com> | 2015-06-26 09:39:48 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-06-29 10:05:35 +0200 |
commit | 329350919e7407bdc217c64a5d6a0486f2b41811 (patch) | |
tree | 4e1cf711d6f4508b796b00a4c59a8d03e67edac4 /include | |
parent | 7153fcb7c4a76d30d9ccc3303c1498dff79649b9 (diff) |
remove custom RTTI from SvDataCopyStream
nothing is using it, except perhaps for XFillExchangeData, which was
using it incorrectly :-(
Change-Id: Ib9246a20bc97ad91d3e3e97fa642217686fc8c46
Diffstat (limited to 'include')
-rw-r--r-- | include/sot/filelist.hxx | 2 | ||||
-rw-r--r-- | include/svtools/grfmgr.hxx | 3 | ||||
-rw-r--r-- | include/tools/stream.hxx | 1 | ||||
-rw-r--r-- | include/vcl/graph.hxx | 3 |
4 files changed, 0 insertions, 9 deletions
diff --git a/include/sot/filelist.hxx b/include/sot/filelist.hxx index 1734c12bb79f..7c77fe94ce6e 100644 --- a/include/sot/filelist.hxx +++ b/include/sot/filelist.hxx @@ -42,8 +42,6 @@ protected: void ClearAll(); public: - - TYPEINFO_OVERRIDE(); FileList() {}; virtual ~FileList(); diff --git a/include/svtools/grfmgr.hxx b/include/svtools/grfmgr.hxx index 089b69d08ba9..9b43de5628b8 100644 --- a/include/svtools/grfmgr.hxx +++ b/include/svtools/grfmgr.hxx @@ -334,9 +334,6 @@ protected: virtual void Assign( const SvDataCopyStream& ) SAL_OVERRIDE; public: - - TYPEINFO_OVERRIDE(); - GraphicObject( const GraphicManager* pMgr = NULL ); GraphicObject( const Graphic& rGraphic, const GraphicManager* pMgr = NULL ); GraphicObject( const GraphicObject& rCacheObj, const GraphicManager* pMgr = NULL ); diff --git a/include/tools/stream.hxx b/include/tools/stream.hxx index 75d7445c5411..544a5fed8d8e 100644 --- a/include/tools/stream.hxx +++ b/include/tools/stream.hxx @@ -756,7 +756,6 @@ class TOOLS_DLLPUBLIC SvDataCopyStream { public: // repeated execution of Load or Assign is allowed - TYPEINFO(); virtual ~SvDataCopyStream(){} virtual void Load( SvStream & ) = 0; virtual void Save( SvStream & ) = 0; diff --git a/include/vcl/graph.hxx b/include/vcl/graph.hxx index 778c6719c4c7..373629807563 100644 --- a/include/vcl/graph.hxx +++ b/include/vcl/graph.hxx @@ -89,9 +89,6 @@ public: SAL_DLLPRIVATE ImpGraphic* ImplGetImpGraphic() const { return mpImpGraphic; } public: - - TYPEINFO_OVERRIDE(); - Graphic(); Graphic( const Graphic& rGraphic ); Graphic( const Bitmap& rBmp ); |