summaryrefslogtreecommitdiff
path: root/unodevtools
diff options
context:
space:
mode:
Diffstat (limited to 'unodevtools')
-rw-r--r--unodevtools/source/skeletonmaker/cppcompskeleton.cxx4
-rw-r--r--unodevtools/source/skeletonmaker/javacompskeleton.cxx2
-rw-r--r--unodevtools/source/skeletonmaker/skeletoncommon.cxx12
-rw-r--r--unodevtools/source/skeletonmaker/skeletoncommon.hxx2
4 files changed, 5 insertions, 15 deletions
diff --git a/unodevtools/source/skeletonmaker/cppcompskeleton.cxx b/unodevtools/source/skeletonmaker/cppcompskeleton.cxx
index a2460ff28dd1..c7dbbf73451d 100644
--- a/unodevtools/source/skeletonmaker/cppcompskeleton.cxx
+++ b/unodevtools/source/skeletonmaker/cppcompskeleton.cxx
@@ -980,7 +980,7 @@ void generateSkeleton(ProgramOptions const & options,
try {
if (!standardout && options.license) {
- printLicenseHeader(*pofs, compFileName);
+ printLicenseHeader(*pofs);
}
generateIncludes(*pofs, interfaces, propertyhelper, serviceobject,
@@ -1138,7 +1138,7 @@ void generateCalcAddin(ProgramOptions const & options,
try {
if (!standardout && options.license) {
- printLicenseHeader(*pofs, compFileName);
+ printLicenseHeader(*pofs);
}
generateIncludes(*pofs, interfaces, propertyhelper, serviceobject,
diff --git a/unodevtools/source/skeletonmaker/javacompskeleton.cxx b/unodevtools/source/skeletonmaker/javacompskeleton.cxx
index 7f8ca012d3b7..c6576c40bfc8 100644
--- a/unodevtools/source/skeletonmaker/javacompskeleton.cxx
+++ b/unodevtools/source/skeletonmaker/javacompskeleton.cxx
@@ -874,7 +874,7 @@ void generateSkeleton(ProgramOptions const & options,
try {
if (!standardout && options.license) {
- printLicenseHeader(*pofs, compFileName);
+ printLicenseHeader(*pofs);
}
generatePackage(*pofs, options.implname);
diff --git a/unodevtools/source/skeletonmaker/skeletoncommon.cxx b/unodevtools/source/skeletonmaker/skeletoncommon.cxx
index e2ecdb35a824..cc68d744066f 100644
--- a/unodevtools/source/skeletonmaker/skeletoncommon.cxx
+++ b/unodevtools/source/skeletonmaker/skeletoncommon.cxx
@@ -36,18 +36,8 @@ using namespace ::codemaker::cpp;
namespace skeletonmaker {
-void printLicenseHeader(std::ostream& o, OString const & filename)
+void printLicenseHeader(std::ostream& o)
{
- sal_Int32 index;
-#ifdef SAL_UNX
- index = filename.lastIndexOf('/');
-#else
- index = filename.lastIndexOf('\\');
-#endif
- OString shortfilename(filename);
- if ( index != -1 )
- shortfilename = filename.copy(index+1);
-
o << "/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */\n"
"/*\n"
" * This file is part of the LibreOffice project.\n"
diff --git a/unodevtools/source/skeletonmaker/skeletoncommon.hxx b/unodevtools/source/skeletonmaker/skeletoncommon.hxx
index b6e6d0d74c19..b0bf3e5d01c7 100644
--- a/unodevtools/source/skeletonmaker/skeletoncommon.hxx
+++ b/unodevtools/source/skeletonmaker/skeletoncommon.hxx
@@ -69,7 +69,7 @@ struct ProgramOptions {
@param o specifies the output stream
@param filename specifies the source file name
*/
-void printLicenseHeader(std::ostream& o, OString const & filename);
+void printLicenseHeader(std::ostream& o);
/**
create dependent on the output path, the implementation name and the