diff options
Diffstat (limited to 'sc')
-rw-r--r-- | sc/qa/unit/helper/qahelper.cxx | 6 | ||||
-rw-r--r-- | sc/qa/unit/subsequent_export-test.cxx | 6 | ||||
-rw-r--r-- | sc/qa/unit/subsequent_filters-test.cxx | 21 | ||||
-rw-r--r-- | sc/qa/unit/ucalc.cxx | 5 | ||||
-rw-r--r-- | sc/qa/unit/ucalc_formula.cxx | 5 |
5 files changed, 0 insertions, 43 deletions
diff --git a/sc/qa/unit/helper/qahelper.cxx b/sc/qa/unit/helper/qahelper.cxx index f3cb007f0e9d..6cab0e737d4e 100644 --- a/sc/qa/unit/helper/qahelper.cxx +++ b/sc/qa/unit/helper/qahelper.cxx @@ -71,12 +71,6 @@ std::ostream& operator<<(std::ostream& rStrm, const OpCode& rCode) return rStrm; } -std::ostream& operator<<(std::ostream& rStrm, const SvxCellHorJustify& rCode) -{ - rStrm << static_cast<int>(rCode); - return rStrm; -} - const FileFormat ScBootstrapFixture::aFileFormats[] = { { "ods" , "calc8", "", ODS_FORMAT_TYPE }, { "xls" , "MS Excel 97", "calc_MS_EXCEL_97", XLS_FORMAT_TYPE }, diff --git a/sc/qa/unit/subsequent_export-test.cxx b/sc/qa/unit/subsequent_export-test.cxx index 6cc4bbb407a1..fff91e78bbe9 100644 --- a/sc/qa/unit/subsequent_export-test.cxx +++ b/sc/qa/unit/subsequent_export-test.cxx @@ -295,12 +295,6 @@ private: }; -std::ostream& operator<<(std::ostream& os, SvxBorderLineStyle n) -{ - os << (int)n; - return os; -} - void ScExportTest::registerNamespaces(xmlXPathContextPtr& pXmlXPathCtx) { struct { xmlChar* pPrefix; xmlChar* pURI; } aNamespaces[] = diff --git a/sc/qa/unit/subsequent_filters-test.cxx b/sc/qa/unit/subsequent_filters-test.cxx index 1b6cb2979808..177d84185d6a 100644 --- a/sc/qa/unit/subsequent_filters-test.cxx +++ b/sc/qa/unit/subsequent_filters-test.cxx @@ -362,27 +362,6 @@ private: uno::Reference<uno::XInterface> m_xCalcComponent; }; -std::ostream& operator<<(std::ostream& rStrm, const SvxCellHorJustify& rCode) -{ - rStrm << static_cast<int>(rCode); - return rStrm; -} -std::ostream& operator<<(std::ostream& os, SvxBorderLineStyle n) -{ - os << (int)n; - return os; -} - -namespace com { namespace sun { namespace star { namespace sheet { - -std::ostream& operator<<(std::ostream& rStrm, DataPilotFieldOrientation n) -{ - rStrm << (int) n; - return rStrm; -} - -} } } } - bool ScFiltersTest::load(const OUString &rFilter, const OUString &rURL, const OUString &rUserData, SfxFilterFlags nFilterFlags, SotClipboardFormatId nClipboardID, unsigned int nFilterVersion) diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx index 68b83625acb2..9918e88e7f25 100644 --- a/sc/qa/unit/ucalc.cxx +++ b/sc/qa/unit/ucalc.cxx @@ -94,11 +94,6 @@ #include <utility> #include <vector> -static std::ostream& operator<<(std::ostream& os, ScMatrixMode mode) -{ - os << (int) mode; return os; -} - struct TestImpl { ScDocShellRef m_xDocShell; diff --git a/sc/qa/unit/ucalc_formula.cxx b/sc/qa/unit/ucalc_formula.cxx index 9240320fac2a..4fb2b544fc1c 100644 --- a/sc/qa/unit/ucalc_formula.cxx +++ b/sc/qa/unit/ucalc_formula.cxx @@ -87,11 +87,6 @@ ScRange getCachedRange(const ScExternalRefCache::TableTypeRef& pCacheTab) } -static std::ostream& operator<<(std::ostream& os, ScMatrixMode mode) -{ - os << (int) mode; return os; -} - void Test::testFormulaCreateStringFromTokens() { // Insert sheets. |