$NetBSD$
dunno what the * compiler the kxicq people use,
but our gcc chokes on these default re-declarations

--- kxicq/engine/kxmessage.cpp@	Sat Dec 22 13:41:31 2001
+++ kxicq/engine/kxmessage.cpp	Wed Jan 16 16:06:34 2002
@@ -484,7 +484,7 @@
 {
 	return messageList.at(_pos);
 }
-kxMessageStruct kxMessage::getMessage(int _pos, bool del=TRUE)
+kxMessageStruct kxMessage::getMessage(int _pos, bool del)
 {
 	if (_pos<0)
 	{
--- kxicq/engine/kxengine.cpp@	Sat Jan  5 06:33:07 2002
+++ kxicq/engine/kxengine.cpp	Wed Jan 16 16:16:05 2002
@@ -290,7 +290,7 @@
   debug("search Failed");
 	emit SignalSearchFailed(_s);
 }
-kxSend *kxEngine::sendMessage(UIN _uin, QString _msg, bool _server, QColor _fg, QColor _bg, bool _useColor=FALSE)
+kxSend *kxEngine::sendMessage(UIN _uin, QString _msg, bool _server, QColor _fg, QColor _bg, bool _useColor)
 {
 	if (!loggedOn()) { notLoggedOn(); return NULL; }
   sendSeq++;
@@ -298,7 +298,7 @@
   send=new kxSend(MESSAGE_TYPE, sendSeq, _uin, _msg,"",_server, _fg, _bg, _useColor);
   return send;
 }
-kxSend *kxEngine::sendUrl(UIN _uin, QString _msg, QString _url, bool _server, QColor _fg, QColor _bg, bool _useColor=FALSE)
+kxSend *kxEngine::sendUrl(UIN _uin, QString _msg, QString _url, bool _server, QColor _fg, QColor _bg, bool _useColor)
 {
 	if (!loggedOn()) { notLoggedOn(); return NULL; }
   sendSeq++;
@@ -324,7 +324,7 @@
 	if (!loggedOn()) { notLoggedOn(); return ; }
 	AIM->sendAuthRequest(_uin,FALSE,_str);
 }
-void kxEngine::addContact2List(UIN _uin, bool auth, bool notify, QString _nick, QString _n, QString _f, QString _l, QString _e, bool _a, bool _req=TRUE)
+void kxEngine::addContact2List(UIN _uin, bool auth, bool notify, QString _nick, QString _n, QString _f, QString _l, QString _e, bool _a, bool _req)
 {
 	if (notify)
 	{
@@ -357,7 +357,7 @@
 	if (!loggedOn()) { return ; }
   AIM->sendRemoveUser2List(_uin);
 }
-void kxEngine::notifyContact(UIN _uin, QString _n, QString _fn, QString _ln, QString _e, bool auth=FALSE)
+void kxEngine::notifyContact(UIN _uin, QString _n, QString _fn, QString _ln, QString _e, bool auth)
 {
 	if (!loggedOn()) { notLoggedOn(); return ; }
 	AIM->sendAddUser(_uin, _n, _fn, _ln, _e, auth);
@@ -431,7 +431,7 @@
 /** Set Security settings:
 webAware
 HideIP */
-void kxEngine::setSecuritySettings(bool _wa, bool _hi, bool _send=FALSE)
+void kxEngine::setSecuritySettings(bool _wa, bool _hi, bool _send)
 {
 	webStatus=_wa;
 	hideIP=_hi;
--- kxicq/engine/kxsend.cpp@	Sat Dec 22 13:41:31 2001
+++ kxicq/engine/kxsend.cpp	Wed Jan 16 16:19:48 2002
@@ -5,7 +5,7 @@
 #include <kxtcp.h>
 #include <kxaim.h>
 
-kxSend::kxSend(int _type, int _sendSeq, UIN _uin, QString _msg, QString _url, bool _server, QColor _fg, QColor _bg, bool _useColor=FALSE) : QObject()
+kxSend::kxSend(int _type, int _sendSeq, UIN _uin, QString _msg, QString _url, bool _server, QColor _fg, QColor _bg, bool _useColor) : QObject()
 {
   message.type=_type;
   message.send=TRUE;
--- kxicq/engine/kxaim.cpp@	Sat Jan  5 06:15:22 2002
+++ kxicq/engine/kxaim.cpp	Wed Jan 16 16:22:40 2002
@@ -2692,7 +2692,7 @@
 
   return searchSequence;	
 }
-void kxAIM::sendAddUser(Q_UINT32 _uin,QString _n, QString _f, QString _l, QString _e, bool auth=FALSE)
+void kxAIM::sendAddUser(Q_UINT32 _uin,QString _n, QString _f, QString _l, QString _e, bool auth)
 {
   QDataStream s(*byteArray, IO_ReadWrite);
 	s.setByteOrder(QDataStream::BigEndian);	
--- kxicq/widgets/kxchangenickdialogimpl.cpp@	Fri Jan  4 14:24:04 2002
+++ kxicq/widgets/kxchangenickdialogimpl.cpp	Wed Jan 16 16:41:55 2002
@@ -124,7 +124,7 @@
 	else
 		countryList->setFocus();	
 }
-void kxAddPhoneDialog::setPhone(QString _gsm, bool _sms=FALSE)
+void kxAddPhoneDialog::setPhone(QString _gsm, bool _sms)
 {
 	if (_gsm.find("SMS")!=-1 && sms) sms->setChecked(TRUE);
 
