Bug 280725 - use generic/automatic remoting for xremote r=caillon sr=bryner

git-svn-id: svn://10.0.0.236/trunk@171585 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bsmedberg%covad.net
2005-04-04 19:08:55 +00:00
parent ebff88dc38
commit 5259ddb97d
51 changed files with 1565 additions and 1841 deletions

View File

@@ -95,6 +95,12 @@ NS_CopyUnicodeToNative(const nsAString &input, nsACString &output)
NS_UTF16ToCString(input, NS_CSTRING_ENCODING_NATIVE_FILESYSTEM, output);
}
inline void
CopyUTF16toUTF8(const nsAString &input, nsACString &output)
{
NS_UTF16ToCString(input, NS_CSTRING_ENCODING_UTF8, output);
}
typedef nsCString nsCAutoString;
typedef nsString nsAutoString;
typedef nsCString nsXPIDLCString;
@@ -104,6 +110,7 @@ typedef nsString nsXPIDLString;
#include "nsString.h"
#include "nsNativeCharsetUtils.h"
#include "nsReadableUtils.h"
inline void
AppendIntToString(nsCString &str, PRInt32 value)