ui tweaks, multiple xpm icon sizes

This commit is contained in:
s_nakamoto
2009-11-07 18:51:41 +00:00
parent 1a01afab23
commit 158ea66c6c
8 changed files with 948 additions and 313 deletions

View File

@@ -1044,13 +1044,13 @@ bool BindListenPort(string& strError)
{
int nErr = WSAGetLastError();
if (nErr == WSAEADDRINUSE)
strError = strprintf("Unable to bind to port %d on this computer. Bitcoin may be running already.", ntohs(sockaddr.sin_port));
strError = strprintf("Unable to bind to port %d on this computer. Bitcoin is probably already running.", ntohs(sockaddr.sin_port));
else
strError = strprintf("Error: Unable to bind to port %d on this computer (bind returned error %d)", ntohs(sockaddr.sin_port), nErr);
printf("%s\n", strError.c_str());
return false;
}
printf("bound to port %d\n", ntohs(sockaddr.sin_port));
printf("Bound to port %d\n", ntohs(sockaddr.sin_port));
// Listen for incoming connections
if (listen(hListenSocket, SOMAXCONN) == SOCKET_ERROR)