blob: 3b3ec229cd632917f828f85dd86416e3960c4dfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include "defines.h"
#include <klocale.h>
void errorBox(const TQString &msg1, const TQString &msg2, TQWidget *tqparent)
{
TQString str;
if ( msg2.isNull() ) str = msg1;
else str = i18n("%1:\n%2").tqarg(msg1).tqarg(msg2);
KMessageBox::error(tqparent, str);
}
TQString socketError(const KExtendedSocket *socket)
{
return KExtendedSocket::strError(socket->status(), socket->systemError());
}
bool checkSocket(int res, const KExtendedSocket *socket,
const TQString &msg, TQWidget *tqparent)
{
if ( res==0 ) return false;
errorBox(msg, socketError(socket), tqparent);
return true;
}
|