diff options
author | David Tardon <dtardon@redhat.com> | 2012-02-17 09:13:12 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-02-17 09:14:43 +0100 |
commit | 243fbda523cb71d0919539081d286eec4717ce15 (patch) | |
tree | 171783f78fe0fd08db6c0ceb0d302b41f1657aac /tools/source | |
parent | 42e8410538995a28274a4d4a8936e75ad4dedcd8 (diff) |
WaE: unused parameter
Diffstat (limited to 'tools/source')
-rw-r--r-- | tools/source/fsys/dirent.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/source/fsys/dirent.cxx b/tools/source/fsys/dirent.cxx index 3fa68692eb6c..ca4bef080084 100644 --- a/tools/source/fsys/dirent.cxx +++ b/tools/source/fsys/dirent.cxx @@ -721,6 +721,8 @@ DirEntry::DirEntry( const String& rInitName, FSysPathStyle eStyle ) { DBG_CTOR( DirEntry, ImpCheckDirEntry ); + (void) eStyle; // only used for DBG_UTIL + pParent = NULL; // schnelle Loesung fuer Leerstring @@ -736,7 +738,9 @@ DirEntry::DirEntry( const String& rInitName, FSysPathStyle eStyle ) { DBG_WARNING( "File URLs are not permitted but accepted" ); aTmpName = rtl::OUStringToOString(INetURLObject( rInitName ).PathToFileName(), osl_getThreadTextEncoding()); +#ifdef DBG_UTIL eStyle = FSYS_STYLE_HOST; +#endif } else { @@ -773,6 +777,8 @@ DirEntry::DirEntry( const rtl::OString& rInitName, FSysPathStyle eStyle ) { DBG_CTOR( DirEntry, ImpCheckDirEntry ); + (void) eStyle; // only used for DBG_UTIL + pParent = NULL; // schnelle Loesung fuer Leerstring @@ -788,7 +794,9 @@ DirEntry::DirEntry( const rtl::OString& rInitName, FSysPathStyle eStyle ) { DBG_WARNING( "File URLs are not permitted but accepted" ); aTmpName = rtl::OUStringToOString(INetURLObject( rInitName ).PathToFileName(), osl_getThreadTextEncoding()); +#ifdef DBG_UTIL eStyle = FSYS_STYLE_HOST; +#endif } #ifdef DBG_UTIL else |