From 6e428cdbf8fd9ce6d50e4907d51dc473c82e0ee9 Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Sun, 21 Oct 2012 13:57:16 -0500 Subject: [PATCH] Remove unnecessary language. --- kopete/protocols/gadu/gadudccserver.cpp | 2 +- kopete/protocols/gadu/gadudcctransaction.cpp | 4 ++-- kpf/src/Server.cpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/kopete/protocols/gadu/gadudccserver.cpp b/kopete/protocols/gadu/gadudccserver.cpp index 6e6c370b..13d61b3f 100644 --- a/kopete/protocols/gadu/gadudccserver.cpp +++ b/kopete/protocols/gadu/gadudccserver.cpp @@ -159,7 +159,7 @@ GaduDCCServer::watcher() { dccEvent = gg_dcc_watch_fd( dccSock ); if ( ! dccEvent ) { - // connection is fucked + // connection is bad // we should try to reenable it // closeDCC(); return; diff --git a/kopete/protocols/gadu/gadudcctransaction.cpp b/kopete/protocols/gadu/gadudcctransaction.cpp index 7ec8d2ac..75e71748 100644 --- a/kopete/protocols/gadu/gadudcctransaction.cpp +++ b/kopete/protocols/gadu/gadudcctransaction.cpp @@ -324,14 +324,14 @@ GaduDCCTransaction::watcher() { dccEvent = gg_dcc_watch_fd( dccSock_ ); if ( ! dccEvent ) { - // connection is fucked + // connection is bad closeDCC(); return; } switch ( dccEvent->type ) { case GG_EVENT_DCC_CLIENT_ACCEPT: kdDebug(14100) << " GG_EVENT_DCC_CLIENT_ACCEPT " << endl; - // check dccsock->peer_uin, if unknown, fuck it; + // check dccsock->peer_uin, if unknown, oh well; // is it for us ? account = gaduDCC_->account( dccSock_->uin ); diff --git a/kpf/src/Server.cpp b/kpf/src/Server.cpp index 868a88d3..3aa81be2 100644 --- a/kpf/src/Server.cpp +++ b/kpf/src/Server.cpp @@ -958,7 +958,7 @@ namespace KPF int headerBytesWritten = d->socket.writeBlock(data, bytesToWrite); // - // Using -1 to signal an error is fucking evil. + // Using -1 to signal an error is evil. // Return false instead or add a 'bool & ok' parameter. // If you're not going to use exceptions, at least don't use // crap C conventions for error handling.