summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/comment.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/dom/comment.cxx')
-rw-r--r--unoxml/source/dom/comment.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/unoxml/source/dom/comment.cxx b/unoxml/source/dom/comment.cxx
index d1ea6d83e3e9..e2bd7ec26c32 100644
--- a/unoxml/source/dom/comment.cxx
+++ b/unoxml/source/dom/comment.cxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -49,7 +50,7 @@ namespace DOM
OUString SAL_CALL CComment::getNodeName()throw (RuntimeException)
{
- return OUString::createFromAscii("#comment");
+ return OUString(RTL_CONSTASCII_USTRINGPARAM("#comment"));
}
OUString SAL_CALL CComment::getNodeValue() throw (RuntimeException)
@@ -57,3 +58,5 @@ namespace DOM
return CCharacterData::getData();
}
}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */