diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-09-29 14:39:18 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-09-29 14:39:18 +0200 |
commit | 4290105937153de6278aac064c419361458f6463 (patch) | |
tree | 6a5ceb57fb5fa820a1039bc689829abe0a3ab0ca | |
parent | 46c4be15d7529f2460c450190113444cd45aa97c (diff) |
Remove newly meaningless comment
...after d35adb0835eb57ca6ef0576781a87d829c2689d0 "Retain the original project
name"
Change-Id: I9b351c79914bf31f2afcc69f3888fee9ea8b10ed
-rw-r--r-- | oox/source/ole/vbaexport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/ole/vbaexport.cxx b/oox/source/ole/vbaexport.cxx index 83b23245c701..eaa80788d0e1 100644 --- a/oox/source/ole/vbaexport.cxx +++ b/oox/source/ole/vbaexport.cxx @@ -379,7 +379,7 @@ void writePROJECTCODEPAGE(SvStream& rStrm) void writePROJECTNAME(SvStream& rStrm, const OUString& name) { rStrm.WriteUInt16(0x0004); // id - sal_uInt32 sizeOfProjectName = name.getLength(); // for project name "VBAProject" + sal_uInt32 sizeOfProjectName = name.getLength(); rStrm.WriteUInt32(sizeOfProjectName); // sizeOfProjectName exportString(rStrm, name); // ProjectName } |