From 703ad53629fb8f9002483142f906249e6160b4db Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 12 Sep 2016 11:13:35 +0100 Subject: this doesn't need a virtual dtor Change-Id: I5c628a063fb5309f493729ee4bd7b122a3d2c3d5 --- l10ntools/source/po.cxx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'l10ntools') diff --git a/l10ntools/source/po.cxx b/l10ntools/source/po.cxx index f446a2f31672..c604577bfa08 100644 --- a/l10ntools/source/po.cxx +++ b/l10ntools/source/po.cxx @@ -37,9 +37,7 @@ private: bool m_bNull; public: - GenPoEntry(); - virtual ~GenPoEntry(); - // Default copy constructor and copy operator work well + GenPoEntry(); const OString& getReference() const { return m_sReference; } const OString& getMsgCtxt() const { return m_sMsgCtxt; } @@ -124,10 +122,6 @@ GenPoEntry::GenPoEntry() { } -GenPoEntry::~GenPoEntry() -{ -} - void GenPoEntry::writeToFile(std::ofstream& rOFStream) const { if ( rOFStream.tellp() != std::ofstream::pos_type( 0 )) -- cgit