From 78ced6235b0a0f043d9e9618cd8758a8e6f34d33 Mon Sep 17 00:00:00 2001 From: Philipp Riemer Date: Sat, 31 Aug 2013 17:56:27 +0200 Subject: fix indentation This is a follow up commit to - 22d1beb78a475e4846af945afde1c4d6c263b5d6 - 1c7af455ab9345304a7ac48ce2e0310de2ac8a75 Change-Id: I55ff666c357c89ad355a1a5bc0d0347fcc188476 --- sax/test/sax/testsax.cxx | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'sax') diff --git a/sax/test/sax/testsax.cxx b/sax/test/sax/testsax.cxx index 42d7529e5133..1100119e7bb6 100644 --- a/sax/test/sax/testsax.cxx +++ b/sax/test/sax/testsax.cxx @@ -66,10 +66,10 @@ public: sal_Int32 hTestHandle) throw ( IllegalArgumentException,RuntimeException); - virtual sal_Bool SAL_CALL testPassed(void) throw ( RuntimeException); - virtual Sequence< OUString > SAL_CALL getErrors(void) throw (RuntimeException); - virtual Sequence< Any > SAL_CALL getErrorExceptions(void) throw (RuntimeException); - virtual Sequence< OUString > SAL_CALL getWarnings(void) throw (RuntimeException); + virtual sal_Bool SAL_CALL testPassed(void) throw (RuntimeException); + virtual Sequence< OUString > SAL_CALL getErrors(void) throw (RuntimeException); + virtual Sequence< Any > SAL_CALL getErrorExceptions(void) throw (RuntimeException); + virtual Sequence< OUString > SAL_CALL getWarnings(void) throw (RuntimeException); private: void testSimple( const Reference < XParser > &r ); @@ -78,9 +78,9 @@ private: void testEncoding( const Reference < XParser > &rParser ); void testPerformance( const Reference < XParser > &rParser ); - Sequence m_seqExceptions; - Sequence m_seqErrors; - Sequence m_seqWarnings; + Sequence m_seqExceptions; + Sequence m_seqErrors; + Sequence m_seqWarnings; Reference < XMultiServiceFactory > m_rFactory; }; @@ -178,22 +178,22 @@ sal_Int32 OSaxParserTest::test( return hTestHandle; } -sal_Bool OSaxParserTest::testPassed(void) throw (RuntimeException) +sal_Bool OSaxParserTest::testPassed(void) throw (RuntimeException) { return m_seqErrors.getLength() == 0; } -Sequence< OUString > OSaxParserTest::getErrors(void) throw (RuntimeException) +Sequence< OUString > OSaxParserTest::getErrors(void) throw (RuntimeException) { return m_seqErrors; } -Sequence< Any > OSaxParserTest::getErrorExceptions(void) throw (RuntimeException) +Sequence< Any > OSaxParserTest::getErrorExceptions(void) throw (RuntimeException) { return m_seqExceptions; } -Sequence< OUString > OSaxParserTest::getWarnings(void) throw (RuntimeException) +Sequence< OUString > OSaxParserTest::getWarnings(void) throw (RuntimeException) { return m_seqWarnings; } -- cgit