diff options
author | Rüdiger Timm <rt@openoffice.org> | 2005-12-14 12:13:11 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2005-12-14 12:13:11 +0000 |
commit | 8ffe38d9d1d0187c3f20aa0bf8bcc40be1008865 (patch) | |
tree | 936248240ce99c10969001a97e10dddb3e2126c8 /moz | |
parent | da6447917faac40e0ad6239ca0d39111f54f5b9f (diff) |
INTEGRATION: CWS pj41 (1.6.2); FILE MERGED
2005/11/08 20:04:10 pjanik 1.6.2.1: #i57409#: 64bit fixes for Mozilla.
Diffstat (limited to 'moz')
-rw-r--r-- | moz/mozilla-source-1.7.5.patch | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/moz/mozilla-source-1.7.5.patch b/moz/mozilla-source-1.7.5.patch index 354b4ed0044c..31a6fc38819d 100644 --- a/moz/mozilla-source-1.7.5.patch +++ b/moz/mozilla-source-1.7.5.patch @@ -7134,3 +7134,111 @@ // 'Dependent' means that params of this type are dependent upon other // params. e.g. an T_INTERFACE_IS is dependent upon some other param at +*** misc/mozilla/netwerk/protocol/http/src/nsHttpConnectionMgr.cpp Thu Sep 2 01:45:24 2004 +--- misc/build/mozilla/netwerk/protocol/http/src/nsHttpConnectionMgr.cpp Sat Nov 5 22:45:54 2005 +*************** +*** 834,841 **** + void + nsHttpConnectionMgr::OnMsgUpdateParam(nsresult status, void *param) + { +! PRUint16 name = (PRUint32(param) & 0xFFFF0000) >> 16; +! PRUint16 value = PRUint32(param) & 0x0000FFFF; + + switch (name) { + case MAX_CONNECTIONS: +--- 834,841 ---- + void + nsHttpConnectionMgr::OnMsgUpdateParam(nsresult status, void *param) + { +! PRUint16 name = (NS_PTR_TO_INT32(param) & 0xFFFF0000) >> 16; +! PRUint16 value = NS_PTR_TO_INT32(param) & 0x0000FFFF; + + switch (name) { + case MAX_CONNECTIONS: +*** misc/mozilla/widget/src/gtk2/nsDragService.cpp Thu Oct 30 02:48:41 2003 +--- misc/build/mozilla/widget/src/gtk2/nsDragService.cpp Sat Nov 5 22:54:28 2005 +*************** +*** 838,844 **** + (GtkTargetEntry *)g_malloc(sizeof(GtkTargetEntry)); + listTarget->target = g_strdup(gMimeListType); + listTarget->flags = 0; +! listTarget->info = (guint)listAtom; + PR_LOG(sDragLm, PR_LOG_DEBUG, + ("automatically adding target %s with id %ld\n", + listTarget->target, listAtom)); +--- 838,844 ---- + (GtkTargetEntry *)g_malloc(sizeof(GtkTargetEntry)); + listTarget->target = g_strdup(gMimeListType); + listTarget->flags = 0; +! listTarget->info = GPOINTER_TO_UINT(listAtom); + PR_LOG(sDragLm, PR_LOG_DEBUG, + ("automatically adding target %s with id %ld\n", + listTarget->target, listAtom)); +*************** +*** 877,883 **** + (GtkTargetEntry *)g_malloc(sizeof(GtkTargetEntry)); + listTarget->target = g_strdup(gTextUriListType); + listTarget->flags = 0; +! listTarget->info = (guint)listAtom; + PR_LOG(sDragLm, PR_LOG_DEBUG, + ("automatically adding target %s with \ + id %ld\n", listTarget->target, listAtom)); +--- 877,883 ---- + (GtkTargetEntry *)g_malloc(sizeof(GtkTargetEntry)); + listTarget->target = g_strdup(gTextUriListType); + listTarget->flags = 0; +! listTarget->info = GPOINTER_TO_UINT(listAtom); + PR_LOG(sDragLm, PR_LOG_DEBUG, + ("automatically adding target %s with \ + id %ld\n", listTarget->target, listAtom)); +*************** +*** 914,920 **** + (GtkTargetEntry *)g_malloc(sizeof(GtkTargetEntry)); + target->target = g_strdup(flavorStr); + target->flags = 0; +! target->info = (guint)atom; + PR_LOG(sDragLm, PR_LOG_DEBUG, + ("adding target %s with id %ld\n", + target->target, atom)); +--- 914,920 ---- + (GtkTargetEntry *)g_malloc(sizeof(GtkTargetEntry)); + target->target = g_strdup(flavorStr); + target->flags = 0; +! target->info = GPOINTER_TO_UINT(atom); + PR_LOG(sDragLm, PR_LOG_DEBUG, + ("adding target %s with id %ld\n", + target->target, atom)); +*************** +*** 931,937 **** + (GtkTargetEntry *)g_malloc(sizeof(GtkTargetEntry)); + plainTarget->target = g_strdup(kTextMime); + plainTarget->flags = 0; +! plainTarget->info = (guint)plainAtom; + PR_LOG(sDragLm, PR_LOG_DEBUG, + ("automatically adding target %s with \ + id %ld\n", plainTarget->target, plainAtom)); +--- 931,937 ---- + (GtkTargetEntry *)g_malloc(sizeof(GtkTargetEntry)); + plainTarget->target = g_strdup(kTextMime); + plainTarget->flags = 0; +! plainTarget->info = GPOINTER_TO_UINT(plainAtom); + PR_LOG(sDragLm, PR_LOG_DEBUG, + ("automatically adding target %s with \ + id %ld\n", plainTarget->target, plainAtom)); +*************** +*** 948,954 **** + (GtkTargetEntry *)g_malloc(sizeof(GtkTargetEntry)); + urlTarget->target = g_strdup(gMozUrlType); + urlTarget->flags = 0; +! urlTarget->info = (guint)urlAtom; + PR_LOG(sDragLm, PR_LOG_DEBUG, + ("automatically adding target %s with \ + id %ld\n", urlTarget->target, urlAtom)); +--- 948,954 ---- + (GtkTargetEntry *)g_malloc(sizeof(GtkTargetEntry)); + urlTarget->target = g_strdup(gMozUrlType); + urlTarget->flags = 0; +! urlTarget->info = GPOINTER_TO_UINT(urlAtom); + PR_LOG(sDragLm, PR_LOG_DEBUG, + ("automatically adding target %s with \ + id %ld\n", urlTarget->target, urlAtom)); |