summaryrefslogtreecommitdiff
path: root/oox/source/ole/vbahelper.cxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-05-09 17:30:54 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-05-14 19:48:32 +0200
commitc2703b63fa8d16ce8efaa55e0431ae829fdd23c1 (patch)
tree3901146d6a00f1f2fe429b7a7a665ead9fc11463 /oox/source/ole/vbahelper.cxx
parenta69f31a322a8ff26814db194551c719ea140b027 (diff)
remove non-sensical /*static*/ comments
They are presumably meant to say the functions are class-static, but at the function definition it's pretty confusing (looks like file-static). Change-Id: I28c69244c9eb7aa3f20f07d8784f3704dc6a57bf
Diffstat (limited to 'oox/source/ole/vbahelper.cxx')
-rw-r--r--oox/source/ole/vbahelper.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/ole/vbahelper.cxx b/oox/source/ole/vbahelper.cxx
index 1681f2ba10f1..92c956218d52 100644
--- a/oox/source/ole/vbahelper.cxx
+++ b/oox/source/ole/vbahelper.cxx
@@ -30,7 +30,7 @@ using namespace ::com::sun::star::uno;
// ============================================================================
-/*static*/ bool VbaHelper::readDirRecord( sal_uInt16& rnRecId, StreamDataSequence& rRecData, BinaryInputStream& rInStrm )
+bool VbaHelper::readDirRecord( sal_uInt16& rnRecId, StreamDataSequence& rRecData, BinaryInputStream& rInStrm )
{
// read the record header
sal_Int32 nRecSize;
@@ -45,7 +45,7 @@ using namespace ::com::sun::star::uno;
return !rInStrm.isEof() && (rInStrm.readData( rRecData, nRecSize ) == nRecSize);
}
-/*static*/ bool VbaHelper::extractKeyValue( OUString& rKey, OUString& rValue, const OUString& rKeyValue )
+bool VbaHelper::extractKeyValue( OUString& rKey, OUString& rValue, const OUString& rKeyValue )
{
sal_Int32 nEqSignPos = rKeyValue.indexOf( '=' );
if( nEqSignPos > 0 )