diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/bootstrp/cppdep.cxx | 10 | ||||
-rw-r--r-- | tools/bootstrp/cppdep.hxx | 1 |
2 files changed, 1 insertions, 10 deletions
diff --git a/tools/bootstrp/cppdep.cxx b/tools/bootstrp/cppdep.cxx index e291777e89f0..a5a64fd0f6ce 100644 --- a/tools/bootstrp/cppdep.cxx +++ b/tools/bootstrp/cppdep.cxx @@ -39,14 +39,6 @@ #include <comphelper/string.hxx> #include "cppdep.hxx" -CppDep::CppDep( ByteString aFileName ) -{ - aSourceFile = aFileName; - - pSearchPath = new ByteStringList; - pFileList = new ByteStringList; -} - CppDep::CppDep() { pSources = new ByteStringList; @@ -245,7 +237,7 @@ rtl::OString CppDep::IsIncludeStatement(rtl::OString aLine) int main( int argc, char **argv ) { - CppDep *pDep = new CppDep( "cppdep.cxx" ); + CppDep *pDep = new CppDep(); pDep->AddSearchPath("."); pDep->AddSearchPath("/usr/include"); pDep->AddSearchPath("/usr/local/include"); diff --git a/tools/bootstrp/cppdep.hxx b/tools/bootstrp/cppdep.hxx index 2d80074e35a4..ca41dea188ac 100644 --- a/tools/bootstrp/cppdep.hxx +++ b/tools/bootstrp/cppdep.hxx @@ -47,7 +47,6 @@ protected: rtl::OString IsIncludeStatement(rtl::OString aLine); public: - CppDep( ByteString aFileName ); CppDep(); virtual ~CppDep(); virtual void Execute(); |