This commit is contained in:
morse%netscape.com 1999-04-04 23:23:12 +00:00
Родитель 511bb0d228
Коммит 667c084cc3
1 изменённых файлов: 20 добавлений и 2 удалений

Просмотреть файл

@ -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