summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/misc/HtmlReader.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-03 09:14:58 +0200
committerNoel Grandin <noel@peralex.com>2015-08-03 13:38:44 +0200
commit7dc5e8731fdc3a11ca429e717ec4a05e67ea1d21 (patch)
tree104e82c3fdda21d4b33c4f427cee9023377b731f /dbaccess/source/ui/misc/HtmlReader.cxx
parent5edd744d1021b41f59528a6e3a8adebfe63e6b6e (diff)
com::sun::star->css in dbaccess
Change-Id: I4fbdd3fb7d1e0ad4423148aaaed3a15aebb26d14
Diffstat (limited to 'dbaccess/source/ui/misc/HtmlReader.cxx')
-rw-r--r--dbaccess/source/ui/misc/HtmlReader.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/dbaccess/source/ui/misc/HtmlReader.cxx b/dbaccess/source/ui/misc/HtmlReader.cxx
index 436995b63cf3..121b88ad2362 100644
--- a/dbaccess/source/ui/misc/HtmlReader.cxx
+++ b/dbaccess/source/ui/misc/HtmlReader.cxx
@@ -69,8 +69,8 @@ using namespace ::com::sun::star::awt;
// OHTMLReader
OHTMLReader::OHTMLReader(SvStream& rIn,const SharedConnection& _rxConnection,
- const Reference< ::com::sun::star::util::XNumberFormatter >& _rxNumberF,
- const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& _rxContext,
+ const Reference< css::util::XNumberFormatter >& _rxNumberF,
+ const css::uno::Reference< css::uno::XComponentContext >& _rxContext,
const TColumnVector* pList,
const OTypeInfoMap* _pInfoMap)
: HTMLParser(rIn)
@@ -89,8 +89,8 @@ OHTMLReader::OHTMLReader(SvStream& rIn,const SharedConnection& _rxConnection,
OHTMLReader::OHTMLReader(SvStream& rIn,
sal_Int32 nRows,
const TPositions &_rColumnPositions,
- const Reference< ::com::sun::star::util::XNumberFormatter >& _rxNumberF,
- const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& _rxContext,
+ const Reference< css::util::XNumberFormatter >& _rxNumberF,
+ const css::uno::Reference< css::uno::XComponentContext >& _rxContext,
const TColumnVector* pList,
const OTypeInfoMap* _pInfoMap,
bool _bAutoIncrementEnabled)
@@ -478,16 +478,16 @@ bool OHTMLReader::CreateTable(int nToken)
TableFontOn(aFont,nTextColor);
break;
case HTML_BOLD_ON:
- aFont.Weight = ::com::sun::star::awt::FontWeight::BOLD;
+ aFont.Weight = css::awt::FontWeight::BOLD;
break;
case HTML_ITALIC_ON:
- aFont.Slant = ::com::sun::star::awt::FontSlant_ITALIC;
+ aFont.Slant = css::awt::FontSlant_ITALIC;
break;
case HTML_UNDERLINE_ON:
- aFont.Underline = ::com::sun::star::awt::FontUnderline::SINGLE;
+ aFont.Underline = css::awt::FontUnderline::SINGLE;
break;
case HTML_STRIKE_ON:
- aFont.Strikeout = ::com::sun::star::awt::FontStrikeout::SINGLE;
+ aFont.Strikeout = css::awt::FontStrikeout::SINGLE;
break;
}
nToken = GetNextToken();