From 8f0b0499edaa8337f304111d4eb734fa897323d6 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 29 Jul 1999 21:50:56 +0000 Subject: [PATCH] *** empty log message *** --- harbour/ChangeLog | 4 ++++ harbour/source/rtl/objfunc.prg | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index dcb8aca853..21050ea357 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,7 @@ +19990729-23:35 CET Victor Szel + ! source/rtl/objfunc.prg - Typo fixed. + "doesnt exists in class" -> "does not exist in class" + 19990729-23:00 GMT+1 Bruno Cantero * makefile.env, makefile.dos,source/makefile.dos, source/rdd/makefile.dos + source/rdd/dbfntx/makefile.dos diff --git a/harbour/source/rtl/objfunc.prg b/harbour/source/rtl/objfunc.prg index 7d04dae097..21aec7bad7 100644 --- a/harbour/source/rtl/objfunc.prg +++ b/harbour/source/rtl/objfunc.prg @@ -225,7 +225,7 @@ return oObj function oModMethod( oObj, cSymbol, nFuncPtr ) if !IsMethod( oObj, cSymbol ) - QOut( "OMODMETHOD: ", cSymbol, " does not exists in class." ) + QOut( "OMODMETHOD: ", cSymbol, " does not exist in class." ) elseif ValType( nFuncPtr ) != "N" QOut( "OMODMETHOD: Argument type error " ) elseif ValType( oObj ) != "O" @@ -244,7 +244,7 @@ return oObj function oModInline( oObj, cSymbol, bInline ) if !IsMethod( oObj, cSymbol ) - QOut( "OMODINLINE: ", cSymbol, " does not exists in class." ) + QOut( "OMODINLINE: ", cSymbol, " does not exist in class." ) elseif ValType( bInline ) != "B" QOut( "OMODINLINE: Argument type error " ) elseif ValType( oObj ) != "O" @@ -263,7 +263,7 @@ return oObj function oDelMethod( oObj, cSymbol ) if !IsMethod( oObj, cSymbol ) - QOut( "ODELMETHOD: ", cSymbol, " does not exists in class." ) + QOut( "ODELMETHOD: ", cSymbol, " does not exist in class." ) elseif ValType( oObj ) != "O" QOut( "ODELMETHOD: Argument type error " ) else @@ -285,7 +285,7 @@ function oDelData( oObj, cSymbol ) local nSeq if !IsData( oObj, cSymbol ) - QOut( "ODELDATA: ", cSymbol, " does not exists in class." ) + QOut( "ODELDATA: ", cSymbol, " does not exist in class." ) elseif ValType( oObj ) != "O" QOut( "ODELDATA: Argument type error " ) else