diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-11-15 18:28:24 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-11-15 18:28:24 +0200 |
commit | 42782fddff98eeab5c8249918e9ba000f08c22e8 (patch) | |
tree | fbabebae15830e0d920e2c9450d023e20d57547e /xmloff | |
parent | 14f56cff838d351b3286f4ec473d742443631e5a (diff) |
WaE: 'const' type qualifier on return type has no effect
Change-Id: I06cc8b77e49ec2a22534e1f45d93dfa0d0a0689f
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/core/xmlimp.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/core/xmlimp.cxx b/xmloff/source/core/xmlimp.cxx index 922fe8a02a86..d6e29df6ff17 100644 --- a/xmloff/source/core/xmlimp.cxx +++ b/xmloff/source/core/xmlimp.cxx @@ -203,7 +203,7 @@ namespace ~DocumentInfo() {} - const sal_uInt16 getGeneratorVersion() const + sal_uInt16 getGeneratorVersion() const { return mnGeneratorVersion; } @@ -265,7 +265,7 @@ public: DestroyFontToSubsFontConverter( hMathFontConv ); } - const sal_uInt16 getGeneratorVersion( const SvXMLImport& rImport ) + sal_uInt16 getGeneratorVersion( const SvXMLImport& rImport ) { if ( !mpDocumentInfo.get() ) { |