? RTF-AsianFontNames.patch ? RTF-clipboard-roland2.patch ? RTF-cpgdeff-roland1.patch ? bug9548.diff ? src/Linux_2.6.9-1.667.inotify.0.14__ ? src/af/util/win/GNUmakefile.in ? src/af/xap/win/GNUmakefile.in ? src/wp/ap/win/GNUmakefile.in ? src/wp/impexp/win/GNUmakefile.in ? src/wp/main/win/GNUmakefile.in ? src/wp/test/win/GNUmakefile.in Index: src/af/xap/xp/xap_Frame.cpp =================================================================== RCS file: /cvsroot/abi/src/af/xap/xp/xap_Frame.cpp,v retrieving revision 1.133 diff -u -r1.133 xap_Frame.cpp --- src/af/xap/xp/xap_Frame.cpp 26 Jun 2005 08:51:10 -0000 1.133 +++ src/af/xap/xp/xap_Frame.cpp 26 Sep 2005 05:21:23 -0000 @@ -864,10 +864,11 @@ // Don't put this auto-save in the most recent list. // getApp()->getPrefs()->setIgnoreNextRecent(); - + if(iEFT < 0) { - error = m_pDoc->saveAs(backupName.c_str(), m_pDoc->getLastSavedAsType(), false); + iEFT = 1; // *.abw format + error = m_pDoc->saveAs(backupName.c_str(), iEFT, false); } else { Index: src/text/ptbl/xp/pd_Document.cpp =================================================================== RCS file: /cvsroot/abi/src/text/ptbl/xp/pd_Document.cpp,v retrieving revision 1.375 diff -u -r1.375 pd_Document.cpp --- src/text/ptbl/xp/pd_Document.cpp 2 Aug 2005 16:56:54 -0000 1.375 +++ src/text/ptbl/xp/pd_Document.cpp 26 Sep 2005 05:21:39 -0000 @@ -3844,7 +3844,7 @@ if (ieft == IEFT_Unknown || ieft == IEFT_Bogus) { - UT_ASSERT_HARMLESS(UT_SHOULD_NOT_HAPPEN); + //UT_ASSERT_HARMLESS(UT_SHOULD_NOT_HAPPEN); return false; } Index: src/wp/impexp/xp/ie_exp.cpp =================================================================== RCS file: /cvsroot/abi/src/wp/impexp/xp/ie_exp.cpp,v retrieving revision 1.78 diff -u -r1.78 ie_exp.cpp --- src/wp/impexp/xp/ie_exp.cpp 3 Apr 2004 17:39:54 -0000 1.78 +++ src/wp/impexp/xp/ie_exp.cpp 26 Sep 2005 05:21:46 -0000 @@ -312,17 +312,17 @@ return static_cast(a+1); } - UT_ASSERT_HARMLESS(UT_SHOULD_NOT_HAPPEN); + // UT_ASSERT_HARMLESS(UT_SHOULD_NOT_HAPPEN); // Hm... an exporter has registered for the given suffix, // but refuses to support any file type we request. // Default to native format. - return IE_Exp::fileTypeForSuffix(".abw"); + return IEFT_Unknown; } } // No filter is registered for that extension, try native format // for default export. - return IE_Exp::fileTypeForSuffix(".abw"); + return IEFT_Unknown; }