diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-07-03 01:14:35 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-07-03 01:14:35 +0100 |
commit | 9a6d94b2b578306edee4b0e5c121fff37e990c9c (patch) | |
tree | 577fe940fd1768538924878cdbd083898194c197 /codemaker | |
parent | 0aea4f41367ddfdfabeeb3c29198b1b30c7193ac (diff) |
callcatcher: unused getExtraInputFile
Diffstat (limited to 'codemaker')
-rw-r--r-- | codemaker/inc/codemaker/options.hxx | 1 | ||||
-rw-r--r-- | codemaker/source/codemaker/options.cxx | 12 |
2 files changed, 0 insertions, 13 deletions
diff --git a/codemaker/inc/codemaker/options.hxx b/codemaker/inc/codemaker/options.hxx index 76c3328668f3..5585394575ce 100644 --- a/codemaker/inc/codemaker/options.hxx +++ b/codemaker/inc/codemaker/options.hxx @@ -72,7 +72,6 @@ public: const StringVector& getInputFiles(); - ::rtl::OString getExtraInputFile(sal_uInt16 index) const throw( IllegalArgument ); inline sal_uInt16 getNumberOfExtraInputFiles() const { return (sal_uInt16)m_extra_input_files.size(); } inline const StringVector& getExtraInputFiles() const diff --git a/codemaker/source/codemaker/options.cxx b/codemaker/source/codemaker/options.cxx index 8748db53c2c8..75761aad5eb3 100644 --- a/codemaker/source/codemaker/options.cxx +++ b/codemaker/source/codemaker/options.cxx @@ -86,16 +86,4 @@ const StringVector& Options::getInputFiles() return m_inputFiles; } -OString Options::getExtraInputFile(sal_uInt16 index) const - throw( IllegalArgument ) -{ - if (index < m_extra_input_files.size()) - { - return m_extra_input_files[index]; - } else - { - throw IllegalArgument("index is out of bound."); - } -} - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |