summaryrefslogtreecommitdiff
path: root/package/inc/CRC32.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-23 14:59:15 +0200
committerNoel Grandin <noel@peralex.com>2015-10-23 15:14:45 +0200
commit8d80b5be024bdbcfedd41b32cbb5c6b71724dd33 (patch)
tree4a4ec47464f3756d551ef97fb419ca073750ef24 /package/inc/CRC32.hxx
parent3569c58c0ed9ac69f809d6f47ac4fe2cb8732630 (diff)
com::sun::star->css in package,pyuno
Change-Id: I7b7b0e7fea2d1a2b9f6f5501ad5e0b8c1b4a17b9
Diffstat (limited to 'package/inc/CRC32.hxx')
-rw-r--r--package/inc/CRC32.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/package/inc/CRC32.hxx b/package/inc/CRC32.hxx
index cfc66c457804..2f2af5a9cbf7 100644
--- a/package/inc/CRC32.hxx
+++ b/package/inc/CRC32.hxx
@@ -33,16 +33,16 @@ public:
CRC32();
~CRC32();
- sal_Int64 SAL_CALL updateStream (::com::sun::star::uno::Reference < ::com::sun::star::io::XInputStream > & xStream)
- throw(::com::sun::star::uno::RuntimeException);
- void SAL_CALL updateSegment(const ::com::sun::star::uno::Sequence< sal_Int8 > &b, sal_Int32 len)
- throw(::com::sun::star::uno::RuntimeException);
- void SAL_CALL update(const ::com::sun::star::uno::Sequence< sal_Int8 > &b)
- throw(::com::sun::star::uno::RuntimeException);
+ sal_Int64 SAL_CALL updateStream (css::uno::Reference < css::io::XInputStream > & xStream)
+ throw(css::uno::RuntimeException);
+ void SAL_CALL updateSegment(const css::uno::Sequence< sal_Int8 > &b, sal_Int32 len)
+ throw(css::uno::RuntimeException);
+ void SAL_CALL update(const css::uno::Sequence< sal_Int8 > &b)
+ throw(css::uno::RuntimeException);
sal_Int32 SAL_CALL getValue()
- throw(::com::sun::star::uno::RuntimeException);
+ throw(css::uno::RuntimeException);
void SAL_CALL reset()
- throw(::com::sun::star::uno::RuntimeException);
+ throw(css::uno::RuntimeException);
};
#endif