summaryrefslogtreecommitdiff
path: root/desktop/source/pkgchk
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-03-01 15:39:39 +0200
committerNoel Grandin <noel@peralex.com>2016-03-02 07:57:38 +0200
commit09b5fe4c898cacd69042d1c585e27daf5d86cae7 (patch)
treeec6a77f4d3d2c595da0ef1f61721b23006246109 /desktop/source/pkgchk
parentb0e18a68c86733b6d88a0c990d4fa4d938680727 (diff)
loplugin:unuseddefaultparam in desktop
Change-Id: I9a7ac03dcbc3849eced0f8431e186b59b31b2418
Diffstat (limited to 'desktop/source/pkgchk')
-rw-r--r--desktop/source/pkgchk/unopkg/unopkg_misc.cxx34
-rw-r--r--desktop/source/pkgchk/unopkg/unopkg_shared.h5
2 files changed, 13 insertions, 26 deletions
diff --git a/desktop/source/pkgchk/unopkg/unopkg_misc.cxx b/desktop/source/pkgchk/unopkg/unopkg_misc.cxx
index 3b73159cb1c4..2be62e16668d 100644
--- a/desktop/source/pkgchk/unopkg/unopkg_misc.cxx
+++ b/desktop/source/pkgchk/unopkg/unopkg_misc.cxx
@@ -67,7 +67,7 @@ OUString toString( OptionInfo const * info )
OptionInfo const * getOptionInfo(
OptionInfo const * list,
- OUString const & opt, sal_Unicode copt )
+ OUString const & opt )
{
for ( ; list->m_name != nullptr; ++list )
{
@@ -75,16 +75,7 @@ OptionInfo const * getOptionInfo(
if (!opt.isEmpty())
{
if (opt.equalsAsciiL(
- option_info.m_name, option_info.m_name_length ) &&
- (copt == '\0' || copt == option_info.m_short_option))
- {
- return &option_info;
- }
- }
- else
- {
- OSL_ASSERT( copt != '\0' );
- if (copt == option_info.m_short_option)
+ option_info.m_name, option_info.m_name_length ))
{
return &option_info;
}
@@ -198,7 +189,7 @@ OUString const & getProcessWorkingDir()
OUString makeAbsoluteFileUrl(
- OUString const & sys_path, OUString const & base_url, bool throw_exc )
+ OUString const & sys_path, OUString const & base_url )
{
// system path to file url
OUString file_url;
@@ -209,7 +200,7 @@ OUString makeAbsoluteFileUrl(
{
file_url = sys_path;
}
- else if (throw_exc)
+ else
{
throw RuntimeException("cannot get file url from system path: " +
sys_path );
@@ -220,16 +211,13 @@ OUString makeAbsoluteFileUrl(
if (osl_getAbsoluteFileURL(
base_url.pData, file_url.pData, &abs.pData ) != osl_File_E_None)
{
- if (throw_exc) {
- OUStringBuffer buf;
- buf.append( "making absolute file url failed: \"" );
- buf.append( base_url );
- buf.append( "\" (base-url) and \"" );
- buf.append( file_url );
- buf.append( "\" (file-url)!" );
- throw RuntimeException( buf.makeStringAndClear() );
- }
- return OUString();
+ OUStringBuffer buf;
+ buf.append( "making absolute file url failed: \"" );
+ buf.append( base_url );
+ buf.append( "\" (base-url) and \"" );
+ buf.append( file_url );
+ buf.append( "\" (file-url)!" );
+ throw RuntimeException( buf.makeStringAndClear() );
}
return abs[ abs.getLength() -1 ] == '/'
? abs.copy( 0, abs.getLength() -1 ) : abs;
diff --git a/desktop/source/pkgchk/unopkg/unopkg_shared.h b/desktop/source/pkgchk/unopkg/unopkg_shared.h
index e263b6119028..a11a29beda43 100644
--- a/desktop/source/pkgchk/unopkg/unopkg_shared.h
+++ b/desktop/source/pkgchk/unopkg/unopkg_shared.h
@@ -59,7 +59,7 @@ OUString toString( OptionInfo const * info );
OptionInfo const * getOptionInfo(
OptionInfo const * list,
- OUString const & opt, sal_Unicode copt = '\0' );
+ OUString const & opt );
bool isOption( OptionInfo const * option_info, sal_uInt32 * pIndex );
@@ -94,8 +94,7 @@ OUString const & getProcessWorkingDir();
OUString makeAbsoluteFileUrl(
- OUString const & sys_path, OUString const & base_url,
- bool throw_exc = true );
+ OUString const & sys_path, OUString const & base_url );