Fixed lots of Composer bugs, modified property dialogs for tables, images; menu updates

git-svn-id: svn://10.0.0.236/trunk@6504 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cmanske%netscape.com
1998-07-27 01:18:38 +00:00
parent 82028137ff
commit 3818c4e571
11 changed files with 274 additions and 475 deletions

View File

@@ -515,8 +515,9 @@ wfe_GetSaveFileName(HWND m_hWnd, char * prompt, char * initial, int * type, char
// try to guess the type
if(initial) {
if( bHtmlOnly || strcasestr(initial, "htm") || strcasestr(initial, "html")) {
BOOL bHTM = (NULL != strcasestr(initial, "htm"));
BOOL bHTML = (NULL != strcasestr(initial, "html"));
if( bHtmlOnly || bHTM || bHTML ) {
/*__EDITOR__*/
// Use ".html" for 32-bit versions
#ifdef XP_WIN16
@@ -524,7 +525,7 @@ wfe_GetSaveFileName(HWND m_hWnd, char * prompt, char * initial, int * type, char
#else
extension = "html";
#endif
if( bHtmlOnly ){
if( bHtmlOnly && !bHTM && !bHTML ){
// This will force replacing any existing EXT with value "extension"
bAppendHTML_Ext = TRUE;
}