blob: 7c897dd9282549231d48275d599f3f40d6363f66 (
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 QString &msg1, const QString &msg2, QWidget *parent)
{
QString str;
if ( msg2.isNull() ) str = msg1;
else str = i18n("%1:\n%2").arg(msg1).arg(msg2);
KMessageBox::error(parent, str);
}
QString socketError(const KExtendedSocket *socket)
{
return KExtendedSocket::strError(socket->status(), socket->systemError());
}
bool checkSocket(int res, const KExtendedSocket *socket,
const QString &msg, QWidget *parent)
{
if ( res==0 ) return false;
errorBox(msg, socketError(socket), parent);
return true;
}
|