summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2013-03-19 09:12:17 -0700
committerMark Spruiell <mes@zeroc.com>2013-03-19 09:12:17 -0700
commite64c9e845af0fb8de1ec17da86216229b51a41ab (patch)
treec902a92a04e2825811dd1037bf2f6cf77429f942 /cpp
parentAdded Ice for C# support for SOCKS proxies (diff)
downloadice-e64c9e845af0fb8de1ec17da86216229b51a41ab.tar.bz2
ice-e64c9e845af0fb8de1ec17da86216229b51a41ab.tar.xz
ice-e64c9e845af0fb8de1ec17da86216229b51a41ab.zip
ICE-5237 - slice2html fixes
Diffstat (limited to 'cpp')
-rw-r--r--cpp/src/slice2html/Gen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/slice2html/Gen.cpp b/cpp/src/slice2html/Gen.cpp
index 1f197cb5585..b40034a1659 100644
--- a/cpp/src/slice2html/Gen.cpp
+++ b/cpp/src/slice2html/Gen.cpp
@@ -1108,7 +1108,7 @@ Slice::GeneratorBase::getComment(const ContainedPtr& contained, const ContainerP
if(_warnOldCommentFiles.find(fileName) == _warnOldCommentFiles.end())
{
_warnOldCommentFiles.insert(fileName);
- cerr << fileName << ": warning: file contains old-style javadoc link syntax: `[" << literal << "]'"
+ cerr << fileName << ": warning: file contains old-style link syntax: `[" << literal << "]'"
<< endl;
}
}
@@ -1507,7 +1507,7 @@ Slice::GeneratorBase::warnOldStyleIdent(const string& str, const string& fileNam
lastName = newName.substr(pos + 1);
}
- cerr << fileName << ": warning: file contains old-style javadoc identifier syntax: `" << str << "'."
+ cerr << fileName << ": warning: file contains old-style identifier syntax: `" << str << "'."
<< " Use `'" << newName << "'";
if(!alternateName.empty())
{