You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdegames/libksirtet/lib/defines.cpp

25 lines
621 B

#include "defines.h"
#include <tdelocale.h>
void errorBox(const TQString &msg1, const TQString &msg2, TQWidget *parent)
{
TQString str;
if ( msg2.isNull() ) str = msg1;
else str = i18n("%1:\n%2").arg(msg1).arg(msg2);
KMessageBox::error(parent, str);
}
TQString socketError(const KExtendedSocket *socket)
{
return KExtendedSocket::strError(socket->status(), socket->systemError());
}
bool checkSocket(int res, const KExtendedSocket *socket,
const TQString &msg, TQWidget *parent)
{
if ( res==0 ) return false;
errorBox(msg, socketError(socket), parent);
return true;
}