M build.properties.sample

M dist/build.xml
M dom/build.xml
M webclient/build.xml
M dist/netbeans/build.xml
M dist/netbeans/webclient.properties
M dom/jni/Makefile.in
M dom/src/Makefile.in
M webclient/src_moz/Makefile.in
M webclient/src_moz/EmbedWindow.cpp
M webclient/src_moz/EmbedWindow.h

- Fix for Mac OS X


git-svn-id: svn://10.0.0.236/trunk@226938 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
edburns%acm.org
2007-05-24 04:16:59 +00:00
parent eb8d7b0960
commit 28489879a0
11 changed files with 91 additions and 17 deletions

View File

@@ -790,7 +790,7 @@ NS_IMETHODIMP EmbedWindow::OnCopyOrDrag(nsIDOMEvent *aEvent,
nsXPIDLCString flavorStr;
if ( currentFlavor ) {
currentFlavor->ToString(getter_Copies(flavorStr));
UINT format = GetFormat(flavorStr);
PRUint32 format = GetFormat(flavorStr);
// Do various things internal to the implementation, like
// map one flavor to another or add additional flavors based
@@ -854,8 +854,9 @@ NS_IMETHODIMP EmbedWindow::OnPasteOrDrop(nsIDOMEvent *event, nsITransferable *tr
return NS_ERROR_NOT_IMPLEMENTED;
}
UINT EmbedWindow::GetFormat(const char* aMimeStr)
PRUint32 EmbedWindow::GetFormat(const char* aMimeStr)
{
#ifdef _WIN32
UINT format;
if (strcmp(aMimeStr, kTextMime) == 0)
@@ -879,6 +880,8 @@ UINT EmbedWindow::GetFormat(const char* aMimeStr)
format = ::RegisterClipboardFormat(aMimeStr);
return format;
#endif
return (PRUint32) 0;
}
NS_IMETHODIMP