summaryrefslogtreecommitdiff
path: root/idl
diff options
context:
space:
mode:
Diffstat (limited to 'idl')
-rw-r--r--idl/inc/database.hxx4
-rw-r--r--idl/source/prj/database.cxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/idl/inc/database.hxx b/idl/inc/database.hxx
index 7994aa51463a..3c102ff6a46a 100644
--- a/idl/inc/database.hxx
+++ b/idl/inc/database.hxx
@@ -58,8 +58,8 @@ class SvParseException : public std::exception
{
public:
SvIdlError aError;
- SvParseException( SvTokenStream & rInStm, const OString& rError );
- SvParseException( const OString& rError, SvToken& rTok );
+ SvParseException( SvTokenStream const & rInStm, const OString& rError );
+ SvParseException( const OString& rError, SvToken const & rTok );
};
diff --git a/idl/source/prj/database.cxx b/idl/source/prj/database.cxx
index 1a1057e797f2..7fb11d98d151 100644
--- a/idl/source/prj/database.cxx
+++ b/idl/source/prj/database.cxx
@@ -28,14 +28,14 @@
#include <osl/file.hxx>
-SvParseException::SvParseException( SvTokenStream & rInStm, const OString& rError )
+SvParseException::SvParseException( SvTokenStream const & rInStm, const OString& rError )
{
SvToken& rTok = rInStm.GetToken();
aError = SvIdlError( rTok.GetLine(), rTok.GetColumn() );
aError.SetText( rError );
};
-SvParseException::SvParseException( const OString& rError, SvToken& rTok )
+SvParseException::SvParseException( const OString& rError, SvToken const & rTok )
{
aError = SvIdlError( rTok.GetLine(), rTok.GetColumn() );
aError.SetText( rError );