Kaydet (Commit) 509b1adc authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Also get rid of :: prefix for css

Change-Id: Ie767abc36047ba614b3ac39991b3290bc19859b1
üst 92744735
......@@ -20,8 +20,8 @@
#include <SvXMLAutoCorrectImport.hxx>
#include <SvXMLAutoCorrectTokenHandler.hxx>
using namespace ::css;
using namespace ::css::xml::sax;
using namespace css;
using namespace css::xml::sax;
SvXMLAutoCorrectImport::SvXMLAutoCorrectImport(
const uno::Reference< uno::XComponentContext > xContext,
......
......@@ -31,7 +31,7 @@ protected:
// This method is called after the namespace map has been updated, but
// before a context for the current element has been pushed.
virtual SvXMLImportContext *CreateFastContext( sal_Int32 Element,
const ::css::uno::Reference< ::css::xml::sax::XFastAttributeList > & xAttrList ) SAL_OVERRIDE;
const css::uno::Reference< css::xml::sax::XFastAttributeList > & xAttrList ) SAL_OVERRIDE;
public:
SvxAutocorrWordList *pAutocorr_List;
......@@ -39,10 +39,10 @@ public:
css::uno::Reference < css::embed::XStorage > xStorage;
SvXMLAutoCorrectImport(
const ::css::uno::Reference< ::css::uno::XComponentContext > xContext,
const css::uno::Reference< css::uno::XComponentContext > xContext,
SvxAutocorrWordList *pNewAutocorr_List,
SvxAutoCorrect &rNewAutoCorrect,
const ::css::uno::Reference < css::embed::XStorage >& rNewStorage);
const css::uno::Reference < css::embed::XStorage >& rNewStorage);
virtual ~SvXMLAutoCorrectImport() throw ();
};
......@@ -53,10 +53,10 @@ private:
SvXMLAutoCorrectImport & rLocalRef;
public:
SvXMLWordListContext ( SvXMLAutoCorrectImport& rImport, sal_Int32 Element,
const ::css::uno::Reference< ::css::xml::sax::XFastAttributeList > & xAttrList );
const css::uno::Reference< css::xml::sax::XFastAttributeList > & xAttrList );
virtual css::uno::Reference<XFastContextHandler> SAL_CALL createFastChildContext( sal_Int32 Element,
const ::css::uno::Reference< ::css::xml::sax::XFastAttributeList > & xAttrList )
const css::uno::Reference< css::xml::sax::XFastAttributeList > & xAttrList )
throw (css::uno::RuntimeException, css::xml::sax::SAXException, std::exception) SAL_OVERRIDE;
virtual ~SvXMLWordListContext();
......@@ -68,7 +68,7 @@ private:
SvXMLAutoCorrectImport & rLocalRef;
public:
SvXMLWordContext ( SvXMLAutoCorrectImport& rImport, sal_Int32 Element,
const ::css::uno::Reference< ::css::xml::sax::XFastAttributeList > & xAttrList );
const css::uno::Reference< css::xml::sax::XFastAttributeList > & xAttrList );
virtual ~SvXMLWordContext();
};
......@@ -80,13 +80,13 @@ protected:
// This method is called after the namespace map has been updated, but
// before a context for the current element has been pushed.
virtual SvXMLImportContext *CreateFastContext( sal_Int32 Element, const ::css::uno::Reference<
::css::xml::sax::XFastAttributeList > & xAttrList ) SAL_OVERRIDE;
virtual SvXMLImportContext *CreateFastContext( sal_Int32 Element, const css::uno::Reference<
css::xml::sax::XFastAttributeList > & xAttrList ) SAL_OVERRIDE;
public:
SvStringsISortDtor &rList;
SvXMLExceptionListImport(
const ::css::uno::Reference< ::css::uno::XComponentContext > xContext,
const css::uno::Reference< css::uno::XComponentContext > xContext,
SvStringsISortDtor & rNewList );
virtual ~SvXMLExceptionListImport() throw ();
......@@ -98,10 +98,10 @@ private:
SvXMLExceptionListImport & rLocalRef;
public:
SvXMLExceptionListContext ( SvXMLExceptionListImport& rImport, sal_Int32 Element,
const ::css::uno::Reference< ::css::xml::sax::XFastAttributeList > & xAttrList );
const css::uno::Reference< css::xml::sax::XFastAttributeList > & xAttrList );
virtual css::uno::Reference<XFastContextHandler> SAL_CALL createFastChildContext( sal_Int32 Element,
const ::css::uno::Reference< ::css::xml::sax::XFastAttributeList > & xAttrList )
const css::uno::Reference< css::xml::sax::XFastAttributeList > & xAttrList )
throw (css::uno::RuntimeException, css::xml::sax::SAXException, std::exception) SAL_OVERRIDE;
virtual ~SvXMLExceptionListContext();
......@@ -113,7 +113,7 @@ private:
SvXMLExceptionListImport & rLocalRef;
public:
SvXMLExceptionContext ( SvXMLExceptionListImport& rImport, sal_Int32 Element,
const ::css::uno::Reference< ::css::xml::sax::XFastAttributeList > & xAttrList );
const css::uno::Reference< css::xml::sax::XFastAttributeList > & xAttrList );
virtual ~SvXMLExceptionContext();
};
......
......@@ -23,7 +23,7 @@
#endif
#endif
using namespace ::css::uno;
using namespace css::uno;
using namespace ::xmloff::token;
SvXMLAutoCorrectTokenHandler::SvXMLAutoCorrectTokenHandler()
......@@ -35,13 +35,13 @@ SvXMLAutoCorrectTokenHandler::~SvXMLAutoCorrectTokenHandler()
}
sal_Int32 SAL_CALL SvXMLAutoCorrectTokenHandler::getTokenFromUTF8( const Sequence< sal_Int8 >& Identifier )
throw (::css::uno::RuntimeException, std::exception)
throw (css::uno::RuntimeException, std::exception)
{
return getTokenDirect( reinterpret_cast< const char* >( Identifier.getConstArray() ), Identifier.getLength() );
}
Sequence< sal_Int8 > SAL_CALL SvXMLAutoCorrectTokenHandler::getUTF8Identifier( sal_Int32 )
throw (::css::uno::RuntimeException, std::exception)
throw (css::uno::RuntimeException, std::exception)
{
return Sequence< sal_Int8 >();
}
......
......@@ -18,7 +18,7 @@
#include <com/sun/star/xml/sax/FastToken.hpp>
#include <sax/fastattribs.hxx>
using namespace ::css::xml::sax;
using namespace css::xml::sax;
using namespace ::xmloff::token;
enum SvXMLAutoCorrectToken : sal_Int32
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment