summaryrefslogtreecommitdiffstats
path: root/include/sot
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-01-08 21:28:17 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-01-09 11:19:33 +0000
commiteef56fc73b5c3ddc02ca7192532748e8d60c3ac6 (patch)
tree08f434f82360f808f146df1220e7b41717b96368 /include/sot
parent[API CHANGE] return unsigned 64-bit value from GetSystemTicks in basic code (diff)
downloadcore-eef56fc73b5c3ddc02ca7192532748e8d60c3ac6.tar.gz
core-eef56fc73b5c3ddc02ca7192532748e8d60c3ac6.zip
Related: coverity#1371305 unnecessary inheritence
SvDataCopyStream used to do extra Load/Save things that are long gone, so there is no reason for the common base anymore Change-Id: Ib321021002adb480bb96298f199141dc3fe2ec2b Reviewed-on: https://gerrit.libreoffice.org/32851 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/sot')
-rw-r--r--include/sot/filelist.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sot/filelist.hxx b/include/sot/filelist.hxx
index 430568c4151e..1939f7164368 100644
--- a/include/sot/filelist.hxx
+++ b/include/sot/filelist.hxx
@@ -25,7 +25,7 @@
#include <vector>
-class SOT_DLLPUBLIC FileList : public SvDataCopyStream
+class SOT_DLLPUBLIC FileList
{
::std::vector< OUString > aStrList;
@@ -36,7 +36,7 @@ protected:
public:
FileList() {};
- virtual ~FileList() override;
+ ~FileList();
// Zuweisungsoperator
FileList& operator=( const FileList& rFileList );