Changes for qnx ( photon ) platform only. They should not affect building/runtime other platforms.

Fixed a building problem due to changes in XRemoteClient.
This commit is contained in:
amardare%qnx.com 2004-04-15 14:57:14 +00:00
Родитель cbc343c595
Коммит f1169f4362
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -74,12 +74,17 @@ XRemoteClient::Init (void)
}
NS_IMETHODIMP
XRemoteClient::SendCommand (const char *aCommand, PRBool *aWindowFound)
XRemoteClient::SendCommand (const char *aProgram, const char *aUsername,
const char *aProfile, const char *aCommand,
char **aResponse, PRBool *aWindowFound)
{
*aWindowFound = PR_TRUE;
char *RemoteServerName;
/* ATENTIE: register connections based on ProfileName and find the appropiate connection
based on the aProfile argument */
if( !strncmp( aCommand, "mping", 5 ) ) {
RemoteServerName = MailRemoteServerName;
aCommand++;