From a87ac7d09aeb2ffaa9c4f3a2a04ccecacad58318 Mon Sep 17 00:00:00 2001 From: Jens-Heiner Rechtien Date: Mon, 19 Jun 2006 13:30:51 +0000 Subject: 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. --- cosv/source/storage/plocroot.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'cosv') 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 { } -- cgit