M dist/netbeans/build.xml
- Correctly exclude Gtk test on Mac M dist/netbeans/logging.properties - turn on all webclient logging M dist/netbeans/webclient.properties - Use correct extension for jnilib on mac os x M webclient/src_moz/EmbedWindow.cpp M webclient/src_moz/NativeBrowserControl.cpp - extra logging M webclient/src_moz/WindowControlImpl.cpp - correct ifdef logic to exclude some Gtk specific code. git-svn-id: svn://10.0.0.236/trunk@227854 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -129,6 +129,9 @@ EmbedWindow::InitNoChrome(NativeBrowserControl *aOwner)
|
||||
nsresult
|
||||
EmbedWindow::CreateWindow_(PRUint32 width, PRUint32 height)
|
||||
{
|
||||
PR_LOG(prLogModuleInfo, PR_LOG_DEBUG,
|
||||
("EmbedWindow::CreateWindow: start"));
|
||||
|
||||
nsresult rv;
|
||||
#if defined(XP_UNIX) && !defined(XP_MACOSX)
|
||||
PR_ASSERT(PR_FALSE);
|
||||
@@ -148,13 +151,20 @@ EmbedWindow::CreateWindow_(PRUint32 width, PRUint32 height)
|
||||
nsnull,
|
||||
0, 0,
|
||||
width, height);
|
||||
if (NS_FAILED(rv))
|
||||
if (NS_FAILED(rv)) {
|
||||
PR_LOG(prLogModuleInfo, PR_LOG_DEBUG,
|
||||
("EmbedWindow::CreateWindow: nsIBaseWindow::InitWindow returned: %d", rv));
|
||||
|
||||
return rv;
|
||||
}
|
||||
|
||||
rv = mBaseWindow->Create();
|
||||
if (NS_FAILED(rv))
|
||||
return rv;
|
||||
|
||||
if (NS_FAILED(rv)) {
|
||||
PR_LOG(prLogModuleInfo, PR_LOG_DEBUG,
|
||||
("EmbedWindow::CreateWindow: nsIBaseWindow::Create returned: %d", rv));
|
||||
return rv;
|
||||
}
|
||||
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user