From kde-bugs-dist Wed May 31 12:49:30 2000 From: Ken Block Date: Wed, 31 May 2000 12:49:30 +0000 To: kde-bugs-dist Subject: Bug#4318: Bad function prototype in kdesud X-MARC-Message: https://marc.info/?l=kde-bugs-dist&m=95977825213356 Package: kdebase Version: 1.9 Even though it is only a prototype, the Compaq C++ requires that you keep the argument names unique. G++ is more lax about this. THe following prototype has two arguments named "s1". ./kdebase/kdesu/kdesud/handler.h.orig 38c38 < QCString makeKey(int namspace, QCString s1, QCString s1=0, QCString s3=0); --- > QCString makeKey(int namspace, QCString s1, QCString s2=0, QCString s3=0);