From e122e7204df2c895f1b9fb95c1a07932a9800a41 Mon Sep 17 00:00:00 2001 From: "morse%netscape.com" Date: Sun, 4 Apr 1999 23:23:12 +0000 Subject: [PATCH] fix build bustage on mac git-svn-id: svn://10.0.0.236/trunk@26259 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/extensions/wallet/src/wallet.cpp | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/mozilla/extensions/wallet/src/wallet.cpp b/mozilla/extensions/wallet/src/wallet.cpp index d8f66200fac..18d5dcc58e6 100644 --- a/mozilla/extensions/wallet/src/wallet.cpp +++ b/mozilla/extensions/wallet/src/wallet.cpp @@ -843,7 +843,7 @@ wallet_ReadFromURLFieldToSchemaFile /* open input stream */ nsSpecialSystemDirectory walletFile(nsSpecialSystemDirectory::OS_CurrentProcessDirectory); walletFile += "res"; - walletFile += "wallet"; +// walletFile += "wallet"; walletFile += filename; nsInputFileStream strm(walletFile); if (!strm.is_open()) { @@ -1687,7 +1687,7 @@ wallet_PostEdit() { /* open SchemaValue file */ nsSpecialSystemDirectory walletFile(nsSpecialSystemDirectory::OS_CurrentProcessDirectory); walletFile += "res"; - walletFile += "wallet"; +// walletFile += "wallet"; walletFile += "SchemaValue.tbl"; nsOutputFileStream strm(walletFile); if (!strm.is_open()) { @@ -1976,4 +1976,22 @@ WLLT_Capture(nsIDocument* doc, nsString field, nsString value) { } } +#else + +PUBLIC void +WLLT_PreEdit(nsIURL* url) { +} + +PUBLIC void +WLLT_Prefill(nsIPresShell* shell, PRBool quick) { +} + +PUBLIC void +WLLT_OKToCapture(PRBool * result, PRInt32 count, char* URLName) { +} + +PUBLIC void +WLLT_Capture(nsIDocument* doc, nsString field, nsString value) { +} + #endif \ No newline at end of file