summaryrefslogtreecommitdiff
path: root/l10ntools
diff options
context:
space:
mode:
authorJean-Noël Rouvignac <jn.rouvignac@gmail.com>2013-02-06 14:47:47 +0100
committerThorsten Behrens <tbehrens@suse.com>2013-02-27 15:40:16 +0100
commit875c997c7da116402509d0bd75e8c15a66a40529 (patch)
tree9f6234505873cb9a4d13bf150a6483e71eb11aed /l10ntools
parent408d5d92ee262c1d06109b190968d56c0c52c378 (diff)
fdo#39446 - Bloat Removal. Removing uncallable code with callcatcher
Removed several unused methods. Could not remove ScVbaFormat<ooo::vba::excel::XStyle>::getAddIndent() and ScVbaFormat<ooo::vba::excel::XStyle>::setAddIndent(com::sun::star::uno::Any const&) because it breaks compilation (they are implementing pure virtual methods). Should Test::test1Table1Page() really be removed? (test class) Conflicts: unusedcode.easy Change-Id: I98a761f66f28e3a82661c10a5fa1dc7e109fff2f
Diffstat (limited to 'l10ntools')
-rw-r--r--l10ntools/inc/po.hxx1
-rw-r--r--l10ntools/source/po.cxx7
2 files changed, 0 insertions, 8 deletions
diff --git a/l10ntools/inc/po.hxx b/l10ntools/inc/po.hxx
index a84b5a0a58a2..f3f6d6db8c69 100644
--- a/l10ntools/inc/po.hxx
+++ b/l10ntools/inc/po.hxx
@@ -89,7 +89,6 @@ public:
friend class PoOfstream;
friend class PoIfstream;
- PoHeader();
PoHeader( const OString& rExtSrc );
PoHeader( std::ifstream& rOldPo );
~PoHeader();
diff --git a/l10ntools/source/po.cxx b/l10ntools/source/po.cxx
index 23506adb2265..90b7f79eefa5 100644
--- a/l10ntools/source/po.cxx
+++ b/l10ntools/source/po.cxx
@@ -631,13 +631,6 @@ namespace
}
}
-//Default Constructor
-PoHeader::PoHeader()
- : m_pGenPo( 0 )
- , m_bIsInitialized( false )
-{
-}
-
//Template Constructor
PoHeader::PoHeader( const OString& rExtSrc )
: m_pGenPo( new GenPoEntry() )