summaryrefslogtreecommitdiff
path: root/cosv
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 13:30:51 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 13:30:51 +0000
commita87ac7d09aeb2ffaa9c4f3a2a04ccecacad58318 (patch)
treeec736b9b09aef6bddb3cc0d392d49b975c96f90f /cosv
parent5c6fe64ed55c9f1717bd855d5c114a9b9ab20d40 (diff)
INTEGRATION: CWS warnings01 (1.3.120); FILE MERGED
2005/09/22 22:17:17 sb 1.3.120.3: RESYNC: (1.3-1.4); FILE MERGED 2005/09/05 08:13:44 sb 1.3.120.2: #i53898# Made code warning-free. 2005/08/30 13:13:57 sb 1.3.120.1: #i53898# Made code warning-free.
Diffstat (limited to 'cosv')
-rw-r--r--cosv/source/storage/plocroot.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/cosv/source/storage/plocroot.cxx b/cosv/source/storage/plocroot.cxx
index c1a17167afdf..23761d73537b 100644
--- a/cosv/source/storage/plocroot.cxx
+++ b/cosv/source/storage/plocroot.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: plocroot.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 08:07:49 $
+ * last change: $Author: hr $ $Date: 2006-06-19 14:30:51 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -366,7 +366,7 @@ WinRootDir::OwnDelimiter() const
//********************** WinDrive ****************************//
WinDrive::WinDrive( char i_cDrive )
- : cDrive(toupper(i_cDrive))
+ : cDrive(static_cast< char >(toupper(i_cDrive)))
{
}
@@ -400,7 +400,7 @@ WinDrive::OwnDelimiter() const
//********************** WinDriveRootDir ****************************//
WinDriveRootDir::WinDriveRootDir( const char * i_sPath )
- : cDrive(toupper(*i_sPath))
+ : cDrive(static_cast< char >(toupper(*i_sPath)))
{
if ( 'A' > cDrive OR 'Z' < cDrive )
cDrive = 0;
@@ -502,12 +502,12 @@ UNCRoot::OwnDelimiter() const
//********************** InvalidRoot ****************************//
void
-InvalidRoot::Get( ostream & o_rPath ) const
+InvalidRoot::Get( ostream & ) const
{
}
void
-InvalidRoot::Get( bostream & o_rPath ) const
+InvalidRoot::Get( bostream & ) const
{
}