summaryrefslogtreecommitdiff
path: root/oox/source
diff options
context:
space:
mode:
authorFridrich Strba <fridrich.strba@bluewin.ch>2011-07-10 16:56:33 -0600
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-07-11 08:32:18 +0200
commit2fab6d4b4827de67f268a57b4135a6e10a50613e (patch)
treece5e8c30e43d78b1555b3fb42827358f94aa64b2 /oox/source
parent42b8a53dc88f627a9220a5e283b456c571833a5b (diff)
Fix windows build
Use const reference in copy constructor if we are going to give it const objects.
Diffstat (limited to 'oox/source')
-rw-r--r--oox/source/core/contexthandler.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/core/contexthandler.cxx b/oox/source/core/contexthandler.cxx
index d781a811d520..8b73a5f47885 100644
--- a/oox/source/core/contexthandler.cxx
+++ b/oox/source/core/contexthandler.cxx
@@ -42,7 +42,7 @@ using ::rtl::OUString;
// ============================================================================
-ContextHandler::ContextHandler( ContextHandler& rParent ) :
+ContextHandler::ContextHandler( const ContextHandler& rParent ) :
ContextHandler_BASE(),
mxBaseData( rParent.mxBaseData )
{